view Weather.h @ 2239:699bd6ee5ad0

dword_F8B1B0 to dword_F8B1B0_MasteryBeingTaught, some final touches to _4B254D_SkillMasteryTeacher
author Grumpy7
date Sun, 23 Feb 2014 15:54:00 +0100
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;