52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
using UnityEngine;
|
|
|
|
namespace RecRoom.Consumable
|
|
{
|
|
// Token: 0x02002152 RID: 8530
|
|
[Token(Token = "0x2002152")]
|
|
[StructLayout(3)]
|
|
public class HairDyePotionConsumableItem : ConsumableItem
|
|
{
|
|
// Token: 0x1700273E RID: 10046
|
|
// (get) Token: 0x0600EB1A RID: 60186 RVA: 0x0037BAF4 File Offset: 0x00379CF4
|
|
[Token(Token = "0x1700273E")]
|
|
public string GFOABAHHBPO
|
|
{
|
|
[Token(Token = "0x600EB1A")]
|
|
[Address(RVA = "0x4B81A0", Offset = "0x4B6BA0", VA = "0x1804B81A0")]
|
|
get
|
|
{
|
|
return this.colorGuid;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600EB1B RID: 60187 RVA: 0x0037BB08 File Offset: 0x00379D08
|
|
[Token(Token = "0x600EB1B")]
|
|
[Address(RVA = "0x17AF2D0", Offset = "0x17ADCD0", VA = "0x1817AF2D0", Slot = "5")]
|
|
public override ConsumableInfo ToConsumableInfo()
|
|
{
|
|
HairDyeConsumableInfo hairDyeConsumableInfo = new HairDyeConsumableInfo();
|
|
string text = this.colorGuid;
|
|
hairDyeConsumableInfo.HairColorGUID = text;
|
|
throw new NullReferenceException();
|
|
}
|
|
|
|
// Token: 0x0600EB1C RID: 60188 RVA: 0x0037BB30 File Offset: 0x00379D30
|
|
[Token(Token = "0x600EB1C")]
|
|
[Address(RVA = "0x179B170", Offset = "0x1799B70", VA = "0x18179B170")]
|
|
public HairDyePotionConsumableItem()
|
|
{
|
|
}
|
|
|
|
// Token: 0x04009BAE RID: 39854
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x58")]
|
|
[Token(Token = "0x4009BAE")]
|
|
[SerializeField]
|
|
[Header("Hair dye potion")]
|
|
protected string colorGuid;
|
|
}
|
|
}
|