metaforce/Runtime/GuiSys/CTargetingManager.hpp

21 lines
614 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2017-02-13 13:29:00 -08:00
#include "Runtime/GuiSys/CCompoundTargetReticle.hpp"
#include "Runtime/GuiSys/COrbitPointMarker.hpp"
2017-02-13 13:29:00 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2017-02-13 13:29:00 -08:00
class CStateManager;
2018-12-07 21:30:43 -08:00
class CTargetingManager {
CCompoundTargetReticle x0_targetReticule;
COrbitPointMarker x21c_orbitPointMarker;
2017-02-13 13:29:00 -08:00
public:
explicit CTargetingManager(const CStateManager& stateMgr);
bool CheckLoadComplete() const;
2018-12-07 21:30:43 -08:00
void Update(float, const CStateManager& stateMgr);
void Draw(const CStateManager& stateMgr, bool hideLockon);
2018-12-07 21:30:43 -08:00
void Touch();
CCompoundTargetReticle& CompoundTargetReticle() { return x0_targetReticule; }
2017-02-13 13:29:00 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce