mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:19:56 +00: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
|