Files
Dec2017-Script-Dump/UnityEngine/SocialPlatforms/Range.cs
T
2026-06-04 11:42:34 +02:00

22 lines
407 B
C#

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;
}
}