Re-namespace/rename CircularButton

This commit is contained in:
smoogipoo 2018-08-15 16:47:20 +09:00
parent fe99aab0f2
commit 85dc42d47a
1 changed files with 4 additions and 4 deletions

View File

@ -1,17 +1,17 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Game.Graphics.UserInterface;
using OpenTK;
namespace osu.Game.Screens.Edit.Screens.Setup.Components
namespace osu.Game.Screens.Edit.Components
{
public class SetupCircularButton : OsuButton
public class CircularButton : OsuButton
{
private const float width = 125;
private const float height = 30;
public SetupCircularButton()
public CircularButton()
{
Size = new Vector2(width, height);
}