mirror of https://github.com/PrimeDecomp/prime.git
19 lines
452 B
C++
19 lines
452 B
C++
|
#ifndef _CSCRIPTDEBUGCAMERAWAYPOINT_HPP
|
||
|
#define _CSCRIPTDEBUGCAMERAWAYPOINT_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#include "MetroidPrime/CActor.hpp"
|
||
|
|
||
|
class CScriptDebugCameraWaypoint : public CActor {
|
||
|
public:
|
||
|
CScriptDebugCameraWaypoint(TUniqueId uid, const rstl::string& name, const CEntityInfo& info, const CTransform4f& xf, uint value);
|
||
|
~CScriptDebugCameraWaypoint() override;
|
||
|
|
||
|
void Accept(IVisitor& visitor) override;
|
||
|
|
||
|
private:
|
||
|
uint xe8_value;
|
||
|
};
|
||
|
|
||
|
#endif
|