13 lines
153 B
Haxe
13 lines
153 B
Haxe
package lnx;
|
|
|
|
class PinTrait extends iron.Trait {
|
|
|
|
public function new() {
|
|
super();
|
|
|
|
notifyOnInit(function() {
|
|
trace("Pin spawned!");
|
|
});
|
|
}
|
|
}
|