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,26 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace CircuitsV2
{
// Token: 0x0200004C RID: 76
[Token(Token = "0x2000035")]
[StructLayout(3)]
public interface ICircuitTypeInstance<TValue> : ICircuitTypeInstance
{
// Token: 0x1700007A RID: 122
// (get) Token: 0x06000266 RID: 614
// (set) Token: 0x06000267 RID: 615
[Token(Token = "0x17000077")]
TValue Value
{
[Token(Token = "0x60001DE")]
[Address(Slot = "0")]
get;
[Token(Token = "0x60001DF")]
[Address(Slot = "1")]
set;
}
}
}