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 UnityEngine
{
// Token: 0x020003C9 RID: 969
public enum PrimitiveType
{
// Token: 0x04000CB4 RID: 3252
Sphere,
// Token: 0x04000CB5 RID: 3253
Capsule,
// Token: 0x04000CB6 RID: 3254
Cylinder,
// Token: 0x04000CB7 RID: 3255
Cube,
// Token: 0x04000CB8 RID: 3256
Plane,
// Token: 0x04000CB9 RID: 3257
Quad
}
}