mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 22:26:10 +00:00
15 lines
125 B
C#
15 lines
125 B
C#
using System;
|
|
|
|
namespace PckStudio.Models
|
|
{
|
|
public enum RotationOrders : byte
|
|
{
|
|
XY,
|
|
YX,
|
|
XZ,
|
|
ZX,
|
|
YZ,
|
|
ZY
|
|
}
|
|
}
|