metaforce/Runtime/World/CScriptCameraHintTrigger.hpp

27 lines
581 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-12-13 02:56:43 +00:00
#include "CActor.hpp"
#include "zeus/COBBox.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
class CScriptCameraHintTrigger : public CActor {
zeus::COBBox xe8_obb;
zeus::CVector3f x124_scale;
union {
struct {
bool x130_24_ : 1;
bool x130_25_ : 1;
bool x130_26_ : 1;
bool x130_27_ : 1;
2016-12-13 02:56:43 +00:00
};
2018-12-08 05:30:43 +00:00
u8 _dummy = 0;
};
2016-12-13 02:56:43 +00:00
public:
2018-12-08 05:30:43 +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
2018-12-08 05:30:43 +00:00
void Accept(IVisitor& visitor);
2016-12-13 02:56:43 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde