mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-06 13:55:54 +00:00
10 lines
116 B
C#
10 lines
116 B
C#
|
|
namespace Cirno.Scripts.Enums;
|
|||
|
|
|
|||
|
|
public enum RoomType
|
|||
|
|
{
|
|||
|
|
Starter,
|
|||
|
|
Regular,
|
|||
|
|
Secret,
|
|||
|
|
Shop,
|
|||
|
|
Boss
|
|||
|
|
}
|