cirnogodot/Scripts/Enums/ElevatorState.cs
2025-03-06 10:27:06 +01:00

11 lines
No EOL
140 B
C#

namespace Cirno.Scripts.Enums;
public enum ElevatorState
{
Init,
Bottom,
Top,
Ascending,
Descending,
Disabled,
}