mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
21 lines
406 B
C++
21 lines
406 B
C++
#ifndef OPENMW_MECHANICS_STEERING_H
|
|
|
|
#include <OgreMath.h>
|
|
|
|
namespace MWWorld
|
|
{
|
|
class Ptr;
|
|
}
|
|
|
|
namespace MWMechanics
|
|
{
|
|
|
|
/// configure rotation settings for an actor to reach this target angle (eventually)
|
|
/// @return have we reached the target angle?
|
|
bool zTurn(const MWWorld::Ptr& actor, Ogre::Radian targetAngle,
|
|
Ogre::Degree epsilon = Ogre::Degree(0.5));
|
|
|
|
}
|
|
|
|
#endif
|