metaforce/Runtime/World/CScriptCameraHintTrigger.hpp

32 lines
748 B
C++
Raw Normal View History

2016-12-13 02:56:43 +00:00
#ifndef __URDE_CSCRIPTCAMERAHINTTRIGGER_HPP__
#define __URDE_CSCRIPTCAMERAHINTTRIGGER_HPP__
#include "CActor.hpp"
#include "zeus/COBBox.hpp"
namespace urde
{
class CScriptCameraHintTrigger : public CActor
{
zeus::COBBox xe8_obb;
zeus::CVector3f x124_scale;
union {
2016-12-13 02:56:43 +00:00
struct
{
bool x130_24_ : 1;
bool x130_25_ : 1;
bool x130_26_ : 1;
bool x130_27_ : 1;
};
u8 _dummy = 0;
};
2016-12-13 02:56:43 +00:00
public:
2017-11-13 06:19:18 +00:00
CScriptCameraHintTrigger(TUniqueId, bool, std::string_view name, const CEntityInfo&, const zeus::CVector3f&,
const zeus::CTransform&, bool, bool);
2017-01-15 03:07:01 +00:00
void Accept(IVisitor& visitor);
2016-12-13 02:56:43 +00:00
};
}
#endif // __URDE_CSCRIPTCAMERAHINTTRIGGER_HPP__