This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
namespace ProBuilder2.Common
{
// Token: 0x02000019 RID: 25
public enum ProjectionAxis
{
// Token: 0x040000BE RID: 190
X,
// Token: 0x040000BF RID: 191
Y,
// Token: 0x040000C0 RID: 192
Z,
// Token: 0x040000C1 RID: 193
X_Negative,
// Token: 0x040000C2 RID: 194
Y_Negative,
// Token: 0x040000C3 RID: 195
Z_Negative
}
}