1
0
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:
Dean Herbert 2016-09-02 18:06:36 +09:00
parent ef98e4ee3c
commit 016521240a
3 changed files with 19 additions and 1 deletions

View 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();
}
}
}

View File

@ -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());
}

View File

@ -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" />