mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Add playtest class.
This commit is contained in:
parent
ef98e4ee3c
commit
016521240a
15
osu.Game/GameModes/Play/PlayTest.cs
Normal file
15
osu.Game/GameModes/Play/PlayTest.cs
Normal file
@ -0,0 +1,15 @@
|
||||
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
||||
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using osu.Framework.GameModes;
|
||||
|
||||
namespace osu.Game.GameModes.Play
|
||||
{
|
||||
class PlayTest : GameMode
|
||||
{
|
||||
public override void Load()
|
||||
{
|
||||
base.Load();
|
||||
}
|
||||
}
|
||||
}
|
@ -13,6 +13,7 @@ using OpenTK;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Framework.IO.Stores;
|
||||
using osu.Game.GameModes.Play;
|
||||
|
||||
namespace osu.Game
|
||||
{
|
||||
@ -50,7 +51,8 @@ namespace osu.Game
|
||||
|
||||
//Add(new FontTest());
|
||||
|
||||
Add(new MainMenu());
|
||||
//Add(new MainMenu());
|
||||
Add(new PlayTest());
|
||||
Add(new CursorContainer());
|
||||
}
|
||||
|
||||
|
@ -62,6 +62,7 @@
|
||||
<Compile Include="GameModes\Menu\ButtonSystem.cs" />
|
||||
<Compile Include="GameModes\Menu\MainMenu.cs" />
|
||||
<Compile Include="GameModes\FieldTest.cs" />
|
||||
<Compile Include="GameModes\Play\PlayTest.cs" />
|
||||
<Compile Include="Graphics\Containers\OsuComponent.cs" />
|
||||
<Compile Include="Graphics\Containers\OsuGameMode.cs" />
|
||||
<Compile Include="Graphics\Containers\OsuLargeComponent.cs" />
|
||||
|
Loading…
Reference in New Issue
Block a user