Add v1.0.3.1

This commit is contained in:
2023-09-06 22:00:49 +02:00
commit 3aebbbf8f0
2051 changed files with 757425 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
using System;
using Cpp2IlInjected;
// Token: 0x0200026A RID: 618
[Token(Token = "0x200026A")]
public struct ValuablesDescData
{
// Token: 0x060017CF RID: 6095 RVA: 0x0003A674 File Offset: 0x00038874
[Token(Token = "0x60017CF")]
[Address(RVA = "0x8C5990", Offset = "0x8C4790", VA = "0x1808C5990")]
public ValuablesDescData(int id, string[] text)
{
int num = 0;
int num2 = 0;
this.Id = num2;
this.Description = num;
this.Id = id;
string text2 = text[0];
this.Name = text2;
string text3 = text[1];
this.Description = text3;
throw new NullReferenceException();
}
// Token: 0x0400220F RID: 8719
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400220F")]
public int Id;
// Token: 0x04002210 RID: 8720
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x4002210")]
public string Name;
// Token: 0x04002211 RID: 8721
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4002211")]
public string Description;
}