19 lines
449 B
C#
19 lines
449 B
C#
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();
|
|
}
|
|
}
|