29 lines
741 B
C#
29 lines
741 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace CircuitsV2.Utilities
|
|
{
|
|
// Token: 0x020001D6 RID: 470
|
|
[Token(Token = "0x2000139")]
|
|
[StructLayout(3)]
|
|
public static class BooleanExt
|
|
{
|
|
// Token: 0x06001032 RID: 4146 RVA: 0x00006F2C File Offset: 0x0000512C
|
|
[Token(Token = "0x6000D44")]
|
|
[Address(RVA = "0x5AA5F0", Offset = "0x5A8FF0", VA = "0x1805AA5F0")]
|
|
public static byte ByteRepr(this bool self)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06001033 RID: 4147 RVA: 0x00006F44 File Offset: 0x00005144
|
|
[Token(Token = "0x6000D45")]
|
|
[Address(RVA = "0x5AA600", Offset = "0x5A9000", VA = "0x1805AA600")]
|
|
public static bool Implies(this bool self, bool implied)
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
}
|