You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef GAME_MWMECHANICS_AIFALLOW_H
|
|
|
|
#define GAME_MWMECHANICS_AIFALLOW_H
|
|
|
|
|
|
|
|
#include "aipackage.hpp"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace MWMechanics
|
|
|
|
{
|
|
|
|
|
|
|
|
class AiFollow : public AiPackage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AiFollow(const std::string &ActorId,float duration, float X, float Y, float Z);
|
|
|
|
AiFollow(const std::string &ActorId,const std::string &CellId,float duration, float X, float Y, float Z);
|
|
|
|
virtual AiFollow *clone() const;
|
|
|
|
virtual bool execute (const MWWorld::Ptr& actor,float duration);
|
|
|
|
///< \return Package completed?
|
|
|
|
virtual int getTypeId() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
float mDuration;
|
|
|
|
float mX;
|
|
|
|
float mY;
|
|
|
|
float mZ;
|
|
|
|
std::string mActorId;
|
|
|
|
std::string mCellId;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|