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

13 lines
153 B
Haxe

package lnx;
class PinTrait extends iron.Trait {
public function new() {
super();
notifyOnInit(function() {
trace("Pin spawned!");
});
}
}