30 lines
873 B
C#
30 lines
873 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace CircuitsV2.Graph.Nodes
|
|
{
|
|
// Token: 0x02000331 RID: 817
|
|
[Token(Token = "0x200022D")]
|
|
[Guid("3FB9FD93-8D45-4395-B9A3-63A99A14442B")]
|
|
[StructLayout(3)]
|
|
public class AndNode : MultiInputBooleanLogicNode
|
|
{
|
|
// Token: 0x06001B55 RID: 6997 RVA: 0x00002096 File Offset: 0x00000296
|
|
[Token(Token = "0x60016AF")]
|
|
[Address(RVA = "0x21E3320", Offset = "0x21E1D20", VA = "0x1821E3320")]
|
|
public AndNode(CircuitContext circuitContext, Guid nodeId)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06001B56 RID: 6998 RVA: 0x0000D1CC File Offset: 0x0000B3CC
|
|
[Token(Token = "0x60016B0")]
|
|
[Address(RVA = "0x21E3230", Offset = "0x21E1C30", VA = "0x1821E3230", Slot = "43")]
|
|
protected override bool GetBooleanReturnInternal(List<bool> bools)
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
}
|