Files
Airport/test/scripts/child_engine_node.toy
2022-11-26 16:29:49 +00:00

14 lines
206 B
Plaintext

var tally: int = 0;
fn onInit(node: opaque) {
print "child init called";
}
fn onStep(node: opaque) {
print "child step called";
print ++tally;
}
fn onFree(node: opaque) {
print "child free called";
}