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