DayZ Scripts
v1.21.156300 ยท Jun 20, 2023
 
Loading...
Searching...
No Matches
MouseButtonInfo.c
Go to the documentation of this file.
2{
3 private int m_ButtonID;
4 private int m_TimeLastPress;
5 private int m_TimeLastRelease;
6
7 void MouseButtonInfo(int button)
8 {
9 m_ButtonID = button;
10 m_TimeLastPress = -1;
12 }
13
15 {
16 return m_ButtonID;
17 }
18
20 {
21 return m_TimeLastPress;
22 }
23
25 {
26 return m_TimeLastRelease;
27 }
28
29 void Press()
30 {
32 }
33
34 void Release()
35 {
37 }
38
40 {
42 {
43 return true;
44 }
45
46 return false;
47 }
48}
proto int GetTime()
returns mission time in milliseconds
void MouseButtonInfo(int button)
private int m_TimeLastRelease
private int m_TimeLastPress
private int m_ButtonID
proto native CGame GetGame()