1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-27 18:32:55 +08:00

Move enum local to usage

This commit is contained in:
Dean Herbert 2022-01-06 22:56:56 +09:00
parent cea9cab4dc
commit 690b425380
2 changed files with 6 additions and 7 deletions

View File

@ -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,
}
}

View File

@ -28,10 +28,4 @@ namespace osu.Game.Overlays.Settings
});
}
}
public enum ExpandedState
{
Contracted,
Expanded,
}
}