1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 22:22:56 +08:00

size_x, size_y -> width, height

This commit is contained in:
smoogipoo 2018-07-31 16:44:20 +09:00
parent c5a772bbc8
commit c9d4332846

View File

@ -9,12 +9,12 @@ namespace osu.Game.Screens.Edit.Screens.Setup.Components
{
public class SetupCircularButton : TriangleButton
{
private const float size_x = 125;
private const float size_y = 30;
private const float width = 125;
private const float height = 30;
public SetupCircularButton()
{
Size = new Vector2(size_x, size_y);
Size = new Vector2(width, height);
}
[BackgroundDependencyLoader]