This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
using UnityEngine;
namespace RecRoom.Core.Encounters
{
// Token: 0x02002FA2 RID: 12194
[Token(Token = "0x2002FA2")]
[Serializable]
public struct RandomlyEnabledGameEncounterDesc
{
// Token: 0x0400DC24 RID: 56356
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400DC24")]
public GameEncounter Encounter;
// Token: 0x0400DC25 RID: 56357
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x400DC25")]
[Range(0f, 1f)]
public float EnabledChance;
}
}