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

40 lines
940 B
C#

using System;
using Cpp2IlInjected;
// Token: 0x020002B4 RID: 692
[Token(Token = "0x20002B4")]
public struct ValuablesDescData
{
// Token: 0x060019EF RID: 6639 RVA: 0x0003FE58 File Offset: 0x0003E058
[Token(Token = "0x60019EF")]
[Address(RVA = "0x4AEB90", Offset = "0x4ADB90", VA = "0x1804AEB90")]
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: 0x0400245F RID: 9311
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400245F")]
public int Id;
// Token: 0x04002460 RID: 9312
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x4002460")]
public string Name;
// Token: 0x04002461 RID: 9313
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4002461")]
public string Description;
}