Files
Airport/test/scripts/child_engine_node.toy

14 lines
170 B
Plaintext

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