添加对 Core 的直接引用

This commit is contained in:
OLDREDSTONE
2025-03-25 15:49:57 +08:00
parent 24907abedb
commit 06c19bf10a
296 changed files with 24961 additions and 2 deletions
+44
View File
@@ -0,0 +1,44 @@
namespace RhythmBase.Components
{
/// <summary>
/// Represents the index of a room with various possible values.
/// </summary>
[Flags]
public enum RDRoomIndex : byte
{
/// <summary>
/// No room selected.
/// </summary>
None = 0b0000_0000,
/// <summary>
/// Represents Room 1.
/// </summary>
Room1 = 0b0000_0001,
/// <summary>
/// Represents Room 2.
/// </summary>
Room2 = 0b0000_0010,
/// <summary>
/// Represents Room 3.
/// </summary>
Room3 = 0b0000_0100,
/// <summary>
/// Represents Room 4.
/// </summary>
Room4 = 0b0000_1000,
/// <summary>
/// Represents the top room.
/// </summary>
RoomTop = 0b0001_0000,
/// <summary>
/// Indicates that the room is not available.
/// </summary>
RoomNotAvaliable = byte.MaxValue,
}
}