mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Move enum local to usage
This commit is contained in:
@ -11,7 +11,6 @@ using osu.Framework.Testing;
|
||||
using osu.Framework.Threading;
|
||||
using osu.Game.Graphics.Containers;
|
||||
using osu.Game.Graphics.UserInterface;
|
||||
using osu.Game.Overlays.Settings;
|
||||
using osuTK;
|
||||
|
||||
namespace osu.Game.Overlays
|
||||
@ -131,4 +130,10 @@ namespace osu.Game.Overlays
|
||||
lastHoveredButton = hoveredButton;
|
||||
}
|
||||
}
|
||||
|
||||
public enum ExpandedState
|
||||
{
|
||||
Contracted,
|
||||
Expanded,
|
||||
}
|
||||
}
|
||||
|
@ -28,10 +28,4 @@ namespace osu.Game.Overlays.Settings
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
public enum ExpandedState
|
||||
{
|
||||
Contracted,
|
||||
Expanded,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user