mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 17:49:55 +00:00
28 lines
437 B
C++
28 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
|