Files
NobetaSource/Cpp2IL/Assembly-CSharp/ValuablesDescData.cs
2023-09-06 22:09:22 +02:00

40 lines
940 B
C#

using System;
using Cpp2IlInjected;
// Token: 0x02000272 RID: 626
[Token(Token = "0x2000272")]
public struct ValuablesDescData
{
// Token: 0x060017ED RID: 6125 RVA: 0x0003AE54 File Offset: 0x00039054
[Token(Token = "0x60017ED")]
[Address(RVA = "0x96E540", Offset = "0x96CD40", VA = "0x18096E540")]
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: 0x04002245 RID: 8773
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4002245")]
public int Id;
// Token: 0x04002246 RID: 8774
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x4002246")]
public string Name;
// Token: 0x04002247 RID: 8775
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4002247")]
public string Description;
}