Files

13 lines
153 B
Haxe
Raw Permalink Normal View History

2026-05-06 17:52:45 -07:00
package lnx;
class PinTrait extends iron.Trait {
public function new() {
super();
notifyOnInit(function() {
trace("Pin spawned!");
});
}
}