1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 23:49:55 +00:00
openmw-tes3mp/apps/openmw/mwmechanics/actorutil.hpp

24 lines
369 B
C++
Raw Normal View History

2015-08-21 09:12:39 +00:00
#ifndef OPENMW_MWMECHANICS_ACTORUTIL_H
#define OPENMW_MWMECHANICS_ACTORUTIL_H
2019-02-18 22:10:55 +00:00
namespace MWWorld
{
class Ptr;
}
2015-08-21 09:12:39 +00:00
namespace MWMechanics
{
enum GreetingState
{
Greet_None,
Greet_InProgress,
Greet_Done
};
2015-08-21 09:12:39 +00:00
MWWorld::Ptr getPlayer();
2015-09-10 06:48:34 +00:00
bool isPlayerInCombat();
bool canActorMoveByZAxis(const MWWorld::Ptr& actor);
2015-08-21 09:12:39 +00:00
}
#endif