Files
Jan2021-Cpp2Il-Dump/RecRoom.Circuitsv2.Runtime/CircuitsV2/Graph/Payload/ReduceAction.cs
T
2026-04-08 23:40:05 +02:00

59 lines
1.5 KiB
C#

using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using CircuitsV2.Protobuf;
using Cpp2IlInjected;
namespace CircuitsV2.Graph.Payload
{
// Token: 0x020002CD RID: 717
[Token(Token = "0x20001D5")]
[Serializable]
[StructLayout(3)]
public class ReduceAction
{
// Token: 0x170004E2 RID: 1250
// (get) Token: 0x06001883 RID: 6275 RVA: 0x0000BB4C File Offset: 0x00009D4C
[Token(Token = "0x170004C3")]
public ActionKind Kind
{
[Token(Token = "0x60013FE")]
[Address(RVA = "0x3C1C50", Offset = "0x3C0650", VA = "0x1803C1C50")]
[CompilerGenerated]
get
{
return ActionKind.Initialize;
}
}
// Token: 0x170004E3 RID: 1251
// (get) Token: 0x06001884 RID: 6276 RVA: 0x00002098 File Offset: 0x00000298
[Token(Token = "0x170004C4")]
public object Payload
{
[Token(Token = "0x60013FF")]
[Address(RVA = "0x3C1240", Offset = "0x3BFC40", VA = "0x1803C1240")]
[CompilerGenerated]
get
{
return null;
}
}
// Token: 0x06001885 RID: 6277 RVA: 0x00002096 File Offset: 0x00000296
[Token(Token = "0x6001400")]
[Address(RVA = "0x3C1040", Offset = "0x3BFA40", VA = "0x1803C1040")]
public ReduceAction(ActionKind kind, object payload)
{
}
// Token: 0x06001886 RID: 6278 RVA: 0x00002098 File Offset: 0x00000298
[Token(Token = "0x6001401")]
[Address(RVA = "0x1FAE430", Offset = "0x1FACE30", VA = "0x181FAE430")]
public static ReduceAction<T> New<T>(ActionKind kind, T payload)
{
return null;
}
}
}