comparison Engine/Graphics/Weather.h @ 2496:5abd8fc8f1c6

for ITEM_ARTIFACT_LADYS_ESCORT
author Ritor1
date Thu, 18 Sep 2014 17:38:54 +0600
parents
children
comparison
equal deleted inserted replaced
2495:7b076fe64f23 2496:5abd8fc8f1c6
1 #pragma once
2
3
4 #pragma pack(push, 1)
5
6
7
8 /* 255 */
9 struct Weather
10 {
11 inline Weather():
12 bNight(false), bRenderSnow(false)
13 {}
14
15 int DrawSnow();
16 int Initialize();
17 int Draw();
18 bool OnPlayerTurn(__int16 dangle);
19
20
21
22 __int16 Screen_Coord[2000];
23 int bNight;
24 int bRenderSnow;
25 };
26 #pragma pack(pop)
27
28
29
30 extern struct Weather *pWeather;