using GraphProcessor; public abstract class BaseFoldNode : BaseNode { [Input(name = "Input")] public BaseFoldNode input; [Output(name = "Out")] public BaseFoldNode output; // Generate a generic representation of the node. This is used for animation. public abstract FoldNodeSerialized Serialize(); }