2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 13:11:21 +00:00
metaforce/Runtime/GuiSys/CTargetingManager.hpp
Lioncash b72d217a68 CCompoundTargetingReticle: Remove mutable specifier on m_scanRetRenderer
This can be trivially resolved by dropping const qualifiers on the
necessary member functions.
2020-04-09 21:31:22 -04:00

21 lines
598 B
C++

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