mirror of
https://github.com/HoonTB/Project-AS.git
synced 2025-12-26 11:51:21 +09:00
22 lines
231 B
C#
22 lines
231 B
C#
// Enums - Director
|
|
public enum DirectionType
|
|
{
|
|
Left,
|
|
Right,
|
|
BottomLeft,
|
|
BottomRight,
|
|
Center,
|
|
Top,
|
|
RunLeft,
|
|
RunRight
|
|
}
|
|
public enum AnimationType
|
|
{
|
|
Jump,
|
|
Shake,
|
|
Nod,
|
|
Punch,
|
|
Run
|
|
}
|
|
|