Files
2026-04-08 23:40:05 +02:00

19 lines
439 B
C#

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);
}
}