Mercurial > mm7
comparison MapsLongTimer.h @ 2386:41c36ecc9f32
MapsLongTimer.h
author | Ritor1 |
---|---|
date | Mon, 23 Jun 2014 23:45:14 +0600 |
parents | |
children | c4d286e4bb80 |
comparison
equal
deleted
inserted
replaced
2381:cb84b457527c | 2386:41c36ecc9f32 |
---|---|
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]; | |
24 |