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,18 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
using Google.Protobuf;
namespace CircuitsV2.CircuitNodes
{
// Token: 0x020001B3 RID: 435
[Token(Token = "0x200011C")]
[StructLayout(3)]
public interface ICircuitDeserializable<TProto> where TProto : IMessage
{
// Token: 0x06000EB7 RID: 3767
[Token(Token = "0x6000CA3")]
[Address(Slot = "0")]
void DeserializeFromProtobuf(TProto protobufData);
}
}
@@ -0,0 +1,18 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
using Google.Protobuf;
namespace CircuitsV2.CircuitNodes
{
// Token: 0x020001B2 RID: 434
[Token(Token = "0x200011B")]
[StructLayout(3)]
public interface ICircuitSerializable<TProto> : ICircuitDeserializable<TProto> where TProto : IMessage
{
// Token: 0x06000EB6 RID: 3766
[Token(Token = "0x6000CA2")]
[Address(Slot = "0")]
TProto SerializeToProtobuf();
}
}