Mercurial > mm7
comparison Engine/MapsLongTimer.h @ 2499:68cdef6879a0
engine folder
author | Ritor1 |
---|---|
date | Fri, 19 Sep 2014 02:57:42 +0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2498:92eeeb5200f2 | 2499:68cdef6879a0 |
---|---|
1 #pragma once | |
2 | |
3 | |
4 /* 169 */ | |
5 #pragma pack(push, 1) | |
6 struct MapsLongTimer | |
7 { | |
8 __int64 NextStartTime; // timer will either fire event at this time (type 2, field_C == 0) | |
9 __int16 timer_evt_ID; | |
10 __int16 timer_evt_seq_num; | |
11 __int16 time_left_to_fire; | |
12 __int16 IntervalHalfMins; // or fire on these intervals (type 1) | |
13 __int16 YearsInterval; | |
14 __int16 MonthsInterval; | |
15 __int16 WeeksInterval; | |
16 __int16 HoursInterval; | |
17 __int16 MinutesInterval; | |
18 __int16 SecondsInterval; | |
19 __int16 timer_evt_type; | |
20 __int16 field_1E; | |
21 }; | |
22 #pragma pack(pop) | |
23 extern MapsLongTimer MapsLongTimersList[100]; //array_5B5928 | |
24 |