blob: e8b394ea83176c5a68a78c9e52476c510a60fa24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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();
}
|