1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-28 20:15:32 +00:00
openmw-tes3mp/apps/openmw/mwmechanics/aitravel.hpp
2012-11-14 18:42:04 +01:00

37 lines
638 B
C++

#ifndef AITRAVEL_HPP_INCLUDED
#define AITRAVEL_HPP_INCLUDED
#include "aipackage.hpp"
#include <iostream>
namespace MWWorld
{
class Ptr;
}
namespace MWMechanics
{
class AiTravel : public AiPackage
{
public:
AiTravel(float x, float y, float z, bool reset = false);
virtual AiTravel *clone() const;
virtual bool execute (const MWWorld::Ptr& actor);
///< \return Package completed?
virtual int getTypeId() const;
float getX();
float getY();
float getZ();
bool getReset();
private:
float mX;
float mY;
float mZ;
bool mReset;
};
}
#endif // AITRAVEL_HPP_INCLUDED