mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 22:27:25 +08:00
33 lines
766 B
C#
33 lines
766 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 OpenTK;
|
|
using osu.Framework.Audio.Sample;
|
|
using osu.Framework.Audio.Track;
|
|
using osu.Framework.GameModes;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
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(),
|
|
};
|
|
}
|
|
}
|
|
}
|