mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
29 lines
539 B
C++
29 lines
539 B
C++
#include "actor.hpp"
|
|
|
|
#include "character.hpp"
|
|
|
|
namespace MWMechanics
|
|
{
|
|
|
|
Actor::Actor(const MWWorld::Ptr &ptr, MWRender::Animation *animation)
|
|
{
|
|
mCharacterController.reset(new CharacterController(ptr, animation));
|
|
}
|
|
|
|
void Actor::updatePtr(const MWWorld::Ptr &newPtr)
|
|
{
|
|
mCharacterController->updatePtr(newPtr);
|
|
}
|
|
|
|
CharacterController* Actor::getCharacterController()
|
|
{
|
|
return mCharacterController.get();
|
|
}
|
|
|
|
AiState& Actor::getAiState()
|
|
{
|
|
return mAiState;
|
|
}
|
|
|
|
}
|