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

32 lines
370 B
Haxe

package armory.trait;
import iron.Trait;
@:keep
class NavAgent extends Trait {
// nav mesh
// target object
// behaviour
public function new() {
super();
notifyOnInit(init);
notifyOnUpdate(update);
notifyOnRemove(removed);
}
function removed() {
}
function init() {
}
function update() {
}
}