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
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace Sony.NP
{
// Token: 0x02000128 RID: 296
public enum Affinity
{
// Token: 0x040004CC RID: 1228
Core2 = 4,
// Token: 0x040004CD RID: 1229
Core3 = 8,
// Token: 0x040004CE RID: 1230
Core4 = 16,
// Token: 0x040004CF RID: 1231
Core5 = 32,
// Token: 0x040004D0 RID: 1232
AllCores = 60
}
}