scripts
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
|
||||
namespace Sony.NP
|
||||
{
|
||||
// Token: 0x0200012C RID: 300
|
||||
public struct SceSDKVersion
|
||||
{
|
||||
// Token: 0x06000636 RID: 1590 RVA: 0x000113F0 File Offset: 0x000103F0
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Concat(new string[]
|
||||
{
|
||||
this.Major.ToString("X2"),
|
||||
".",
|
||||
this.Minor.ToString("X3"),
|
||||
".",
|
||||
this.Patch.ToString("X3")
|
||||
});
|
||||
}
|
||||
|
||||
// Token: 0x040004EA RID: 1258
|
||||
public uint Major;
|
||||
|
||||
// Token: 0x040004EB RID: 1259
|
||||
public uint Minor;
|
||||
|
||||
// Token: 0x040004EC RID: 1260
|
||||
public uint Patch;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user