1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 06:07:28 +08:00
osu-lazer/osu.Game/GameModes/Play/PlayTest.cs

27 lines
648 B
C#
Raw Normal View History

2016-09-02 17:06:36 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
2016-09-02 17:06:36 +08:00
using osu.Framework.GameModes;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Objects;
2016-09-02 17:06:36 +08:00
namespace osu.Game.GameModes.Play
{
class PlayTest : GameMode
{
public override void Load()
{
base.Load();
Beatmap beatmap = new Beatmap();
beatmap.HitObjects = new List<Beatmaps.Objects.BaseHit>()
{
new HitObject() { },
};
2016-09-02 17:06:36 +08:00
}
}
}