| 9 | using namespace Logic; |
| 10 | |
| 11 | NpcAnimationHandler::NpcAnimationHandler(World::WorldInstance& world, Handle::EntityHandle hostVob) |
| 12 | : m_World(world) |
| 13 | , m_HostVob(hostVob) |
| 14 | { |
| 15 | m_WalkMode = WalkMode::Run; |
| 16 | } |
| 17 | |
| 18 | NpcAnimationHandler::~NpcAnimationHandler() |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected