view Weather.h @ 1827:0c75c3e7e436

cleaned up part of party.cpp, renamed byte_AE3368 to playerAlreadyPicked + 3 vars after it, moved them to party.cpp, some player.cpp bugfixes
author Grumpy7
date Fri, 11 Oct 2013 05:49:39 +0200
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;