2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:51:21 +00:00
metaforce/Runtime/GuiSys/CTargetingManager.hpp
2018-10-06 17:42:33 -10:00

23 lines
563 B
C++

#pragma once
#include "CCompoundTargetReticle.hpp"
#include "COrbitPointMarker.hpp"
namespace urde
{
class CStateManager;
class CTargetingManager
{
CCompoundTargetReticle x0_targetReticule;
COrbitPointMarker x21c_orbitPointMarker;
public:
CTargetingManager(const CStateManager& stateMgr);
bool CheckLoadComplete();
void Update(float, const CStateManager& stateMgr);
void Draw(const CStateManager& stateMgr, bool hideLockon) const;
void Touch();
CCompoundTargetReticle& CompoundTargetReticle() { return x0_targetReticule; }
};
}