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.SocialPlatforms
{
// Token: 0x02000390 RID: 912
public struct Range
{
// Token: 0x06003642 RID: 13890 RVA: 0x0005B1D4 File Offset: 0x000593D4
public Range(int fromValue, int valueCount)
{
this.from = fromValue;
this.count = valueCount;
}
// Token: 0x04000C32 RID: 3122
public int from;
// Token: 0x04000C33 RID: 3123
public int count;
}
}