1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 12:30:11 +08:00

Tweak play button

This commit is contained in:
Drew DeVault
2016-10-19 16:41:34 -04:00
Unverified
parent 4dcdc8638e
commit 51791bba7f
+6 -5
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!"),
}
};
}