Mercurial > mm7
view Weather.h @ 2079:ba5cd8a8a0d3
smacker flags
author | Gloval |
---|---|
date | Thu, 05 Dec 2013 23:31:48 +0400 |
parents | bfde0563ecdc |
children | f6e59446c133 |
line wrap: on
line source
#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 field_0[2000]; int bNight; int bRenderSnow; }; #pragma pack(pop) extern struct Weather *pWeather;