mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
21 lines
210 B
C#
21 lines
210 B
C#
public enum ActorManipulationMode
|
|
{
|
|
Pan,
|
|
Rotate,
|
|
Face,
|
|
}
|
|
|
|
public enum ActorGender
|
|
{
|
|
Female,
|
|
None,
|
|
Male,
|
|
}
|
|
|
|
public enum CardinalDirection
|
|
{
|
|
North,
|
|
East,
|
|
South,
|
|
West,
|
|
}
|