scripts
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user