Mercurial > mm7
view Weather.h @ 793:290afbd48b6b
IndoorLocation::GetSector fixed (even better!)
author | Nomad |
---|---|
date | Mon, 25 Mar 2013 09:17:42 +0200 |
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;