mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-05 02:52:20 -04:00
29 lines
437 B
C++
29 lines
437 B
C++
#ifndef OPENMW_BASEACTOR_HPP
|
|
#define OPENMW_BASEACTOR_HPP
|
|
|
|
#include <components/esm/loadcell.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class BaseActor
|
|
{
|
|
public:
|
|
|
|
BaseActor()
|
|
{
|
|
|
|
}
|
|
|
|
unsigned int movementFlags;
|
|
char movementAnim;
|
|
char drawState;
|
|
bool isFlying;
|
|
|
|
ESM::Position position;
|
|
ESM::Position direction;
|
|
ESM::Cell cell;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_BASEACTOR_HPP
|