Mercurial > mm7
view Weather.h @ 782:c47efaf23642
more tidy
author | zipi |
---|---|
date | Sun, 24 Mar 2013 01:45:09 +0000 |
parents | 45615cacad31 |
children | f5156b8c61ad |
line wrap: on
line source
#pragma once /* 255 */ #pragma pack(push, 1) 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;