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
|
|
|
|
|
|
2016-09-02 17:27:38 +08:00
|
|
|
|
using System.Collections.Generic;
|
2016-09-02 17:06:36 +08:00
|
|
|
|
using osu.Framework.GameModes;
|
2016-09-02 17:27:38 +08:00
|
|
|
|
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();
|
2016-09-02 17:27:38 +08:00
|
|
|
|
|
|
|
|
|
Beatmap beatmap = new Beatmap();
|
|
|
|
|
|
|
|
|
|
beatmap.HitObjects = new List<Beatmaps.Objects.BaseHit>()
|
|
|
|
|
{
|
|
|
|
|
new HitObject() { },
|
|
|
|
|
};
|
|
|
|
|
|
2016-09-02 17:06:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|