2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-01-18 22:30:02 +00:00
|
|
|
|
2019-09-23 19:00:23 +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:
|
2020-04-20 04:57:50 +00:00
|
|
|
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
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
void Accept(IVisitor& visitor) override;
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
|
|
|
|
void Think(float, CStateManager&) override;
|
2020-04-09 17:28:20 +00:00
|
|
|
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
|