pch.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // PCH.H
  4. //
  5. //////////////////////////////////////////////////////////////////////////////
  6. #ifndef _PCH_H_
  7. #define _PCH_H_
  8. // __MODULE__ is used by ZAssert
  9. #define __MODULE__ "EngineApp"
  10. //////////////////////////////////////////////////////////////////////////////
  11. //
  12. // Disable some warnings
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. // conversion from 'float' to 'int', possible loss of data
  16. //#pragma warning(disable : 4244)
  17. // 'this' : used in base member initializer list
  18. #pragma warning(disable : 4355)
  19. // identifier was truncated to '255' characters in the debug information
  20. #pragma warning(disable : 4786)
  21. //////////////////////////////////////////////////////////////////////////////
  22. //
  23. // The include files
  24. //
  25. //////////////////////////////////////////////////////////////////////////////
  26. #include "stdio.h"
  27. #include "windows.h"
  28. #include "zlib.h"
  29. #include "engine.h"
  30. #include "effect.h"
  31. #endif