Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
GenericGraphModel.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12class GenericGraphModel: IGraphModel
13{
14 void GenericGraphModel(notnull GraphNodeScene scene, notnull BaseContainer sceneSource) {}
15
16 proto external bool CanRemoveConnection(notnull GraphNodeConnectionBase connection);
17 proto external bool CanConnectPorts(notnull GraphNodePortBase portFrom, notnull GraphNodePortBase portTo);
19 proto external GraphNode AddNode(typename nodeType, string nodeName, vector nodePosition);
21 proto external bool SaveNode(notnull GraphNode node);
22
23 // callbacks
24
25 event protected bool OverrideCanRemoveConnection(notnull GraphNodeConnectionBase connection) { return true; };
26 event protected bool OverrideCanConnectPorts(notnull GraphNodePortBase portFrom, notnull GraphNodePortBase portTo) { return true; };
27}
28
bool OverrideCanRemoveConnection(notnull GraphNodeConnectionBase connection)
bool OverrideCanConnectPorts(notnull GraphNodePortBase portFrom, notnull GraphNodePortBase portTo)