WeatherControl.h
上传用户:henghua
上传日期:2007-11-14
资源大小:7655k
文件大小:0k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #ifndef WEATHER_CONTROL_H
  2. #define WEATHER_CONTROL_H
  3. #include "comman.h"
  4. enum weathercondition
  5. {
  6. FINE = 1,
  7. CLOUDY,
  8. DAY,
  9. NIGHT,
  10. SNOWING
  11. };
  12. class CWeatherControl
  13. {
  14. public:
  15. CWeatherControl(LPDIRECT3DDEVICE9 device, CConfiguration *config);
  16. bool Init();
  17. bool Update();
  18. bool Render();
  19. void set(int i);
  20. float process;
  21. int status;
  22. float level;
  23. float currentlevel;
  24. CConfiguration *config;
  25. LPDIRECT3DDEVICE9 device;
  26. };
  27. #endif