File size: 219 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 |
class PluginPermanentCrossHair extends PluginBase
{
private Hud m_Hud;
void SwitchPermanentCrossHair(bool state)
{
if (!m_Hud)
m_Hud = GetGame().GetMission().GetHud();
m_Hud.SetPermanentCrossHair(state);
}
} |