mirror of
https://github.com/ppy/osu.git
synced 2025-03-20 07:57:20 +08:00
Split out enums
This commit is contained in:
parent
c36551227e
commit
5be0672fe9
osu.Game/Screens/Multi/Lounge/Components
@ -1,7 +1,6 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using System.ComponentModel;
|
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Extensions.Color4Extensions;
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
@ -71,21 +70,4 @@ namespace osu.Game.Screens.Multi.Lounge.Components
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum RoomStatusFilter
|
|
||||||
{
|
|
||||||
Open,
|
|
||||||
|
|
||||||
[Description("Recently Ended")]
|
|
||||||
Ended,
|
|
||||||
Participated,
|
|
||||||
Owned,
|
|
||||||
}
|
|
||||||
|
|
||||||
public enum RoomCategoryFilter
|
|
||||||
{
|
|
||||||
Any,
|
|
||||||
Normal,
|
|
||||||
Spotlight
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
namespace osu.Game.Screens.Multi.Lounge.Components
|
||||||
|
{
|
||||||
|
public enum RoomCategoryFilter
|
||||||
|
{
|
||||||
|
Any,
|
||||||
|
Normal,
|
||||||
|
Spotlight
|
||||||
|
}
|
||||||
|
}
|
17
osu.Game/Screens/Multi/Lounge/Components/RoomStatusFilter.cs
Normal file
17
osu.Game/Screens/Multi/Lounge/Components/RoomStatusFilter.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using System.ComponentModel;
|
||||||
|
|
||||||
|
namespace osu.Game.Screens.Multi.Lounge.Components
|
||||||
|
{
|
||||||
|
public enum RoomStatusFilter
|
||||||
|
{
|
||||||
|
Open,
|
||||||
|
|
||||||
|
[Description("Recently Ended")]
|
||||||
|
Ended,
|
||||||
|
Participated,
|
||||||
|
Owned,
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user