metaforce/Runtime/World/CScriptTargetingPoint.hpp

26 lines
639 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
2021-04-10 08:42:06 +00:00
namespace metaforce {
2018-12-08 05:30:43 +00:00
class CScriptTargetingPoint : public CActor {
2017-01-18 22:30:02 +00:00
private:
bool xe8_e4_ : 1 = false;
2018-12-08 05:30:43 +00:00
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(CStateManager&) 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
};
2021-04-10 08:42:06 +00:00
} // namespace metaforce