2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 00:27:42 +00:00

Add CameraWaypoint loader

This commit is contained in:
Jack Andersen
2016-04-23 15:10:47 -10:00
parent 4272e8207b
commit 9e652db6f0
5 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#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);
};
}
#endif // __URDE_CSCRIPTCAMERAWAYPOINT_HPP__