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;
using UnityEngine.Scripting;
namespace UnityEngine.Collections
{
// Token: 0x020004B3 RID: 1203
[UsedByNativeCode]
public enum Allocator
{
// Token: 0x040011CD RID: 4557
Invalid,
// Token: 0x040011CE RID: 4558
None,
// Token: 0x040011CF RID: 4559
Temp,
// Token: 0x040011D0 RID: 4560
TempJob,
// Token: 0x040011D1 RID: 4561
Persistent
}
}