Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
pluginpermanentcrosshair.c
Go to the documentation of this file.
1class PluginPermanentCrossHair extends PluginBase
2{
3 private Hud m_Hud;
4
5 void SwitchPermanentCrossHair(bool state)
6 {
7 if (!m_Hud)
8 m_Hud = g_Game.GetMission().GetHud();
9 m_Hud.SetPermanentCrossHair(state);
10 }
11}
Class PluginMessageManager provides some basic Message Distribution mechanics, if you get instance of...
Definition pluginbase.c:2
void SwitchPermanentCrossHair(bool state)
DayZGame g_Game
Definition dayzgame.c:3942