Mercurial > mm7
view Weather.h @ 2179:f0b5ca2dfb73
_427E01_cast_spell continue
author | Ritor1 |
---|---|
date | Wed, 22 Jan 2014 17:34:05 +0600 |
parents | f6e59446c133 |
children |
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 Screen_Coord[2000]; int bNight; int bRenderSnow; }; #pragma pack(pop) extern struct Weather *pWeather;