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

Add CScriptCameraHint

This commit is contained in:
Jack Andersen
2016-04-27 18:44:41 -10:00
parent deb7246812
commit d486e1af08
4 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#ifndef __URDE_CSCRIPTCAMERAHINT_HPP__
#define __URDE_CSCRIPTCAMERAHINT_HPP__
#include "CActor.hpp"
namespace urde
{
class CScriptCameraHint : public CActor
{
public:
CScriptCameraHint(TUniqueId, const std::string& name, const CEntityInfo& info,
const zeus::CTransform& xf, bool, u32, u32, u32, float, float, float,
const zeus::CVector3f&, const zeus::CVector3f&, const zeus::CVector3f&,
float, float, float, float, float, float, float, float, float, float);
};
}
#endif // __URDE_CSCRIPTCAMERAHINT_HPP__