1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 21:47:20 +08:00

Tweak play button

This commit is contained in:
Drew DeVault 2016-10-19 16:41:34 -04:00
parent 4dcdc8638e
commit 51791bba7f

View File

@ -124,11 +124,12 @@ namespace osu.Game.GameModes.Play
new Button
{
Text = "Play",
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
Action = () =>
{
},
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativePositionAxes = Axes.Both,
Position = Vector2.Zero,
Colour = new Color4(238, 51, 153, 255),
Action = () => Console.WriteLine("Clicked!"),
}
};
}