pch.h 678 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // pch.h : include file for standard system include files,
  2. // or project specific include files that are used frequently,
  3. // but are changed infrequently
  4. #define __MODULE__ "WinTrek"
  5. #pragma warning(disable:4786)
  6. //
  7. // C Headers
  8. //
  9. #include <stdlib.h>
  10. #include <math.h>
  11. #include <stdio.h>
  12. #include <time.h>
  13. //
  14. // WinTrek headers
  15. //
  16. #include "zlib.h"
  17. #include "utility.h"
  18. #include "igc.h"
  19. //
  20. // Drone headers
  21. //
  22. //#define DRONES_DEBUG // uncommenting this will enable control spews for all of the drone ships... It's a lot of info
  23. #include "drones.h"
  24. #include "drone.h"
  25. #include "goal.h"
  26. #include "mining.h"
  27. #include "turret.h"
  28. #include "actionlib.h"