mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
16 lines
267 B
C++
16 lines
267 B
C++
#ifndef OPENMW_MWMECHANICS_ACTORUTIL_H
|
|
#define OPENMW_MWMECHANICS_ACTORUTIL_H
|
|
|
|
namespace MWWorld
|
|
{
|
|
class Ptr;
|
|
}
|
|
|
|
namespace MWMechanics
|
|
{
|
|
MWWorld::Ptr getPlayer();
|
|
bool isPlayerInCombat();
|
|
bool canActorMoveByZAxis(const MWWorld::Ptr& actor);
|
|
}
|
|
|
|
#endif
|