armory/Sources/armory/trait/NavMesh.hx
2016-10-25 13:01:20 +02:00

28 lines
278 B
Haxe
Executable file

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