mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-17 01:10:10 +00:00
19 lines
381 B
C++
19 lines
381 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);
|
|
bool hasWaterWalking(const MWWorld::Ptr& actor);
|
|
bool isTargetMagicallyHidden(const MWWorld::Ptr& actor);
|
|
}
|
|
|
|
#endif
|