mirror of
https://github.com/ApfelTeeSaft/Slender.git
synced 2026-08-26 19:33:36 +00:00
10 lines
84 B
C#
10 lines
84 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum ConstraintAxis
|
|
{
|
|
X = 0,
|
|
Y = 1,
|
|
Z = 2
|
|
}
|