mirror of
https://github.com/ppy/osu
synced 2024-12-15 11:25:29 +00:00
size_x, size_y -> width, height
This commit is contained in:
parent
c5a772bbc8
commit
c9d4332846
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user