10 lines
84 B
C#
10 lines
84 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum ConstraintAxis
|
|
{
|
|
X = 0,
|
|
Y = 1,
|
|
Z = 2
|
|
}
|