Files
Leenkx_Examples/script_properties_global/Sources/lnx/ReadConfig.hx
2026-05-06 17:52:45 -07:00

13 lines
211 B
Haxe

package lnx;
class ReadConfig extends iron.Trait {
public function new() {
super();
notifyOnInit(function() {
var c = Config.inst;
trace("Text is: " + c.text + ", speed is: " + c.speed);
});
}
}