Mercurial > mm7
annotate Engine/Graphics/Weather.h @ 2563:65c97624c047
Saving & loading works from both main menu and game
author | a.parshin |
---|---|
date | Tue, 19 May 2015 22:00:56 +0200 |
parents | 5abd8fc8f1c6 |
children |
rev | line source |
---|---|
2496 | 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; |