metaforce/Runtime/GuiSys/CTargetingManager.hpp

21 lines
598 B
C++
Raw Normal View History

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