|
|
@ -3,6 +3,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
#include <components/esm/loadcell.hpp>
|
|
|
|
#include <components/esm/loadcell.hpp>
|
|
|
|
#include <components/openmw-mp/Base/BaseStructs.hpp>
|
|
|
|
#include <components/openmw-mp/Base/BaseStructs.hpp>
|
|
|
|
|
|
|
|
#include <RakNetTypes.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
namespace mwmp
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -33,6 +34,23 @@ namespace mwmp
|
|
|
|
Movement movement;
|
|
|
|
Movement movement;
|
|
|
|
bool hasMovement;
|
|
|
|
bool hasMovement;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ActorList
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ActorList()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RakNet::RakNetGUID guid;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<BaseActor> baseActors;
|
|
|
|
|
|
|
|
unsigned int count;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ESM::Cell cell;
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif //OPENMW_BASEACTOR_HPP
|
|
|
|
#endif //OPENMW_BASEACTOR_HPP
|
|
|
|