2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-02-13 21:29:00 +00:00
|
|
|
|
|
|
|
#include "CCompoundTargetReticle.hpp"
|
|
|
|
#include "COrbitPointMarker.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
class CStateManager;
|
|
|
|
class CTargetingManager
|
|
|
|
{
|
2017-10-29 06:21:52 +00:00
|
|
|
CCompoundTargetReticle x0_targetReticule;
|
|
|
|
COrbitPointMarker x21c_orbitPointMarker;
|
2017-02-13 21:29:00 +00:00
|
|
|
public:
|
2017-05-18 19:27:21 +00:00
|
|
|
CTargetingManager(const CStateManager& stateMgr);
|
2017-02-13 21:29:00 +00:00
|
|
|
bool CheckLoadComplete();
|
2017-05-18 19:27:21 +00:00
|
|
|
void Update(float, const CStateManager& stateMgr);
|
2017-05-21 16:01:04 +00:00
|
|
|
void Draw(const CStateManager& stateMgr, bool hideLockon) const;
|
2017-10-29 06:21:52 +00:00
|
|
|
void Touch();
|
|
|
|
CCompoundTargetReticle& CompoundTargetReticle() { return x0_targetReticule; }
|
2017-02-13 21:29:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|