mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 05:07:14 +00:00
15 lines
147 B
C#
15 lines
147 B
C#
using System;
|
|
|
|
namespace PckStudio.Models
|
|
{
|
|
public enum Positions
|
|
{
|
|
Default,
|
|
Outstretched,
|
|
Walking,
|
|
Running,
|
|
Sitting,
|
|
Zombie
|
|
}
|
|
}
|