23 lines
555 B
C#
23 lines
555 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace CircuitsV2
|
|
{
|
|
// Token: 0x0200004D RID: 77
|
|
[Token(Token = "0x2000036")]
|
|
[StructLayout(3)]
|
|
public interface ICircuitValueRetriever<TValue>
|
|
{
|
|
// Token: 0x06000268 RID: 616
|
|
[Token(Token = "0x60001E0")]
|
|
[Address(Slot = "0")]
|
|
TValue GetValue(ICircuitTypeInstance<TValue> circuitTypeInstance);
|
|
|
|
// Token: 0x06000269 RID: 617
|
|
[Token(Token = "0x60001E1")]
|
|
[Address(Slot = "1")]
|
|
void SetValue(ICircuitTypeInstance<TValue> typeInstance, TValue value);
|
|
}
|
|
}
|