Mercurial > mm7
annotate Weather.h @ 767:45615cacad31
Fog fixed
author | Nomad |
---|---|
date | Sat, 23 Mar 2013 21:11:15 +0200 |
parents | 23a07ead5980 |
children | f5156b8c61ad |
rev | line source |
---|---|
0 | 1 #pragma once |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 /* 255 */ | |
9 #pragma pack(push, 1) | |
10 struct Weather | |
11 { | |
767 | 12 inline Weather(): |
13 bNight(false), bRenderSnow(false) | |
14 {} | |
15 | |
0 | 16 int DrawSnow(); |
17 int Initialize(); | |
18 int Draw(); | |
271 | 19 bool OnPlayerTurn(__int16 dangle); |
0 | 20 |
21 | |
22 | |
23 __int16 field_0[2000]; | |
750 | 24 int bNight; |
0 | 25 int bRenderSnow; |
26 }; | |
27 #pragma pack(pop) | |
28 | |
29 | |
30 | |
31 extern struct Weather *pWeather; |