armory/Sources/armory/trait/NavCrowd.hx
2016-10-12 17:52:27 +02:00

28 lines
315 B
Haxe

package armory.trait;
import iron.Trait;
@:keep
class NavCrowd extends Trait {
public function new() {
super();
notifyOnInit(init);
notifyOnUpdate(update);
notifyOnRemove(removed);
}
function removed() {
}
function init() {
}
function update() {
}
}