armory/Sources/armory/trait/NavCrowd.hx

28 lines
279 B
Haxe
Raw Normal View History

2016-07-27 14:25:01 +02:00
package armory.trait;
2016-07-28 13:21:27 +02:00
import iron.Trait;
2016-10-12 17:52:27 +02:00
@:keep
2016-07-27 14:25:01 +02:00
class NavCrowd extends Trait {
2016-10-15 20:19:09 +02:00
public function new() {
super();
2016-07-27 14:25:01 +02:00
2016-10-15 20:19:09 +02:00
notifyOnInit(init);
notifyOnUpdate(update);
2016-07-27 14:25:01 +02:00
notifyOnRemove(removed);
2016-10-15 20:19:09 +02:00
}
2016-07-27 14:25:01 +02:00
function removed() {
}
2016-10-15 20:19:09 +02:00
function init() {
2016-07-27 14:25:01 +02:00
2016-10-15 20:19:09 +02:00
}
2016-07-27 14:25:01 +02:00
2016-10-15 20:19:09 +02:00
function update() {
2016-07-27 14:25:01 +02:00
2016-10-15 20:19:09 +02:00
}
2016-07-27 14:25:01 +02:00
}