2016-04-24 01:10:47 +00:00
|
|
|
#ifndef __URDE_CSCRIPTCAMERAWAYPOINT_HPP__
|
|
|
|
#define __URDE_CSCRIPTCAMERAWAYPOINT_HPP__
|
|
|
|
|
|
|
|
#include "CActor.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class CScriptCameraWaypoint : public CActor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CScriptCameraWaypoint(TUniqueId uid, const std::string& name, const CEntityInfo& info,
|
|
|
|
const zeus::CTransform& xf, bool active, float, u32);
|
2017-01-15 03:07:01 +00:00
|
|
|
|
|
|
|
void Accept(IVisitor& visitor);
|
2016-04-24 01:10:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CSCRIPTCAMERAWAYPOINT_HPP__
|