2022-09-14 02:25:08 +00:00
|
|
|
#ifndef _CSCRIPTDEBUGCAMERAWAYPOINT_HPP
|
|
|
|
#define _CSCRIPTDEBUGCAMERAWAYPOINT_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "MetroidPrime/CActor.hpp"
|
|
|
|
|
|
|
|
class CScriptDebugCameraWaypoint : public CActor {
|
|
|
|
public:
|
2022-09-18 06:05:46 +00:00
|
|
|
CScriptDebugCameraWaypoint(TUniqueId uid, const rstl::string& name, const CEntityInfo& info,
|
|
|
|
const CTransform4f& xf, uint value);
|
2022-09-14 02:25:08 +00:00
|
|
|
~CScriptDebugCameraWaypoint() override;
|
|
|
|
|
|
|
|
void Accept(IVisitor& visitor) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint xe8_value;
|
|
|
|
};
|
|
|
|
|
2022-09-18 06:05:46 +00:00
|
|
|
#endif
|