mirror of
https://github.com/ppy/osu
synced 2024-12-11 01:19:26 +00:00
Better inheritance
This commit is contained in:
parent
e3a8a14281
commit
bd123fa906
@ -4,6 +4,8 @@
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Input;
|
||||
using OpenTK.Input;
|
||||
using osu.Game.Graphics;
|
||||
using OpenTK.Graphics;
|
||||
|
||||
namespace osu.Game.Screens.Play
|
||||
{
|
||||
@ -20,5 +22,11 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
return base.OnKeyDown(state, args);
|
||||
}
|
||||
|
||||
protected override void AddButtons(OsuColour colours)
|
||||
{
|
||||
AddButton(@"Retry", colours.YellowDark, OnRetry);
|
||||
AddButton(@"Quit to Main Menu", new Color4(170, 27, 39, 255), OnQuit);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -201,8 +201,7 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
protected virtual void AddButtons(OsuColour colours)
|
||||
{
|
||||
AddButton(@"Retry", colours.YellowDark, OnRetry);
|
||||
AddButton(@"Quit to Main Menu", new Color4(170, 27, 39, 255), OnQuit);
|
||||
|
||||
}
|
||||
|
||||
public InGameOverlay()
|
||||
|
Loading…
Reference in New Issue
Block a user