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,22 @@
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);
}
}