Initial commit
This commit is contained in:
11
sidecar/Models/FlowNode.cs
Normal file
11
sidecar/Models/FlowNode.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace ArtificersScrollwork.Sidecar.Models;
|
||||
|
||||
public record FlowNode(
|
||||
string Id,
|
||||
string Type, // method_call | condition | gump_send | return | property_access
|
||||
string Label,
|
||||
List<FlowNode> Children,
|
||||
string? FakeInputKey = null,
|
||||
string? ResolvedGump = null,
|
||||
int? AssetRef = null
|
||||
);
|
||||
Reference in New Issue
Block a user