| 11 | } |
| 12 | |
| 13 | NpcAIHandler::NpcAIHandler(World::WorldInstance& world, Handle::EntityHandle hostVob) |
| 14 | : m_World(world) |
| 15 | , m_HostVob(hostVob) |
| 16 | { |
| 17 | unbindKeys(); |
| 18 | m_ActiveMovementState = EMovementState::None; |
| 19 | } |
| 20 | |
| 21 | void NpcAIHandler::update(float deltaTime) |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected