mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:35:34 +00:00
11 lines
140 B
C#
11 lines
140 B
C#
|
|
namespace Cirno.Scripts.Enums;
|
|||
|
|
|
|||
|
|
public enum ElevatorState
|
|||
|
|
{
|
|||
|
|
Init,
|
|||
|
|
Bottom,
|
|||
|
|
Top,
|
|||
|
|
Ascending,
|
|||
|
|
Descending,
|
|||
|
|
Disabled,
|
|||
|
|
}
|