mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:00:05 +08:00
7bdb2fcfc7
Comes with one complimentary test.
30 lines
667 B
C#
30 lines
667 B
C#
//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.Audio.Sample;
|
|
using osu.Framework.Audio.Track;
|
|
using osu.Framework.GameModes;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.GameModes.Menu
|
|
{
|
|
internal class MainMenu : GameMode
|
|
{
|
|
public override string Name => @"Main Menu";
|
|
|
|
private AudioTrackBass bgm;
|
|
|
|
public override void Load()
|
|
{
|
|
base.Load();
|
|
|
|
AudioSample welcome = Game.Audio.Sample.Get(@"welcome");
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new ButtonSystem(),
|
|
};
|
|
}
|
|
}
|
|
}
|