Mercurial > mm7
diff Engine/Graphics/Weather.h @ 2496:5abd8fc8f1c6
for ITEM_ARTIFACT_LADYS_ESCORT
author | Ritor1 |
---|---|
date | Thu, 18 Sep 2014 17:38:54 +0600 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Engine/Graphics/Weather.h Thu Sep 18 17:38:54 2014 +0600 @@ -0,0 +1,30 @@ +#pragma once + + +#pragma pack(push, 1) + + + +/* 255 */ +struct Weather +{ + inline Weather(): + bNight(false), bRenderSnow(false) + {} + + int DrawSnow(); + int Initialize(); + int Draw(); + bool OnPlayerTurn(__int16 dangle); + + + + __int16 Screen_Coord[2000]; + int bNight; + int bRenderSnow; +}; +#pragma pack(pop) + + + +extern struct Weather *pWeather; \ No newline at end of file