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 UnityEngine
{
// Token: 0x02000091 RID: 145
public enum RPCMode
{
// Token: 0x04000118 RID: 280
Server,
// Token: 0x04000119 RID: 281
Others,
// Token: 0x0400011A RID: 282
OthersBuffered = 5,
// Token: 0x0400011B RID: 283
All = 2,
// Token: 0x0400011C RID: 284
AllBuffered = 6
}
}