metaforce/Runtime/World/CScriptTargetingPoint.hpp

31 lines
694 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-01-18 22:30:02 +00:00
#include <string_view>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/World/CActor.hpp"
2017-01-18 22:30:02 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
class CScriptTargetingPoint : public CActor {
2017-01-18 22:30:02 +00:00
private:
2018-12-08 05:30:43 +00:00
union {
struct {
bool xe8_e4_ : 1;
2017-01-18 22:30:02 +00:00
};
2018-12-08 05:30:43 +00:00
u8 xe8_dummy = 0;
};
TUniqueId xea_;
float xec_time = 0.f;
2017-01-18 22:30:02 +00:00
public:
2018-12-08 05:30:43 +00:00
CScriptTargetingPoint(TUniqueId, std::string_view, const CEntityInfo&, const zeus::CTransform&, bool);
2017-01-18 22:30:02 +00:00
void Accept(IVisitor& visitor) override;
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
void Think(float, CStateManager&) override;
void Render(const CStateManager&) const override {}
2017-01-18 22:30:02 +00:00
2018-12-08 05:30:43 +00:00
bool GetLocked() const;
2017-01-18 22:30:02 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde