This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,51 @@
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;
}
}