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,45 @@
using System;
using System.Runtime.InteropServices;
using CircuitsV2.Protobuf;
using Cpp2IlInjected;
using Google.Protobuf;
using UnityEngine;
namespace RecRoom.CircuitsV2
{
// Token: 0x0200232E RID: 9006
[Token(Token = "0x200232E")]
[Serializable]
[StructLayout(3)]
public sealed class CircuitsV2TemplateSerializedState : ScriptableObject
{
// Token: 0x170029F8 RID: 10744
// (get) Token: 0x0600F855 RID: 63573 RVA: 0x003A94CC File Offset: 0x003A76CC
[Token(Token = "0x170029F8")]
public CircuitTemplateRootData Template
{
[Token(Token = "0x600F855")]
[Address(RVA = "0x1A84EF0", Offset = "0x1A838F0", VA = "0x181A84EF0")]
get
{
MessageParser<CircuitTemplateRootData> parser = CircuitTemplateRootData._parser;
byte[] array = this.template;
return parser.ParseFrom(array);
}
}
// Token: 0x0600F856 RID: 63574 RVA: 0x003A94F4 File Offset: 0x003A76F4
[Token(Token = "0x600F856")]
[Address(RVA = "0x3C6D30", Offset = "0x3C5730", VA = "0x1803C6D30")]
public CircuitsV2TemplateSerializedState()
{
}
// Token: 0x0400A626 RID: 42534
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x400A626")]
[SerializeField]
[HideInInspector]
private byte[] template;
}
}