mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
#nullable disable
|
|
|
|
using System.IO;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Graphics.Cursor;
|
|
using osu.Game.Tournament.Screens.Drawings;
|
|
|
|
namespace osu.Game.Tournament.Tests.Screens
|
|
{
|
|
public partial class TestSceneDrawingsScreen : TournamentTestScene
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(Storage storage)
|
|
{
|
|
using (var stream = storage.CreateFileSafely("drawings.txt"))
|
|
using (var writer = new StreamWriter(stream))
|
|
{
|
|
writer.WriteLine("KR : South Korea : KOR");
|
|
writer.WriteLine("US : United States : USA");
|
|
writer.WriteLine("PH : Philippines : PHL");
|
|
writer.WriteLine("BR : Brazil : BRA");
|
|
writer.WriteLine("JP : Japan : JPN");
|
|
}
|
|
|
|
Add(new OsuContextMenuContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Child = new DrawingsScreen()
|
|
});
|
|
}
|
|
}
|
|
}
|