metaforce/Runtime/World/CScriptTargetingPoint.hpp

27 lines
655 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2017-01-18 14:30:02 -08:00
#include <string_view>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/World/CActor.hpp"
2017-01-18 14:30:02 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class CScriptTargetingPoint : public CActor {
2017-01-18 14:30:02 -08:00
private:
bool xe8_e4_ : 1 = false;
2018-12-07 21:30:43 -08:00
TUniqueId xea_;
float xec_time = 0.f;
2017-01-18 14:30:02 -08:00
public:
2021-05-26 07:00:57 -07:00
DEFINE_ENTITY
2018-12-07 21:30:43 -08:00
CScriptTargetingPoint(TUniqueId, std::string_view, const CEntityInfo&, const zeus::CTransform&, bool);
2017-01-18 14:30:02 -08:00
void Accept(IVisitor& visitor) override;
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
void Think(float, CStateManager&) override;
void Render(CStateManager&) override {}
2017-01-18 14:30:02 -08:00
2018-12-07 21:30:43 -08:00
bool GetLocked() const;
2017-01-18 14:30:02 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce