DayZ 1.24
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
8 {
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 {
31 m_TimeLastPress = GetGame().GetTime();
32 }
33
34 void Release()
35 {
36 m_TimeLastRelease = GetGame().GetTime();
37 }
38
40 {
42 return true;
43
44 return false;
45 }
46}
void MouseButtonInfo(int button)
proto native CGame GetGame()