cocos2d-prefix.pch 805 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // Prefix header for all source files of the 'cocos2dx' target in the 'cocos2dx' project
  3. //
  4. #include <stdarg.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include <limits.h>
  8. #include <float.h>
  9. #include <math.h>
  10. #include <stdio.h>
  11. #include <time.h>
  12. #include <stdint.h>
  13. #include <assert.h>
  14. #include <sys/time.h>
  15. #include <sys/select.h>
  16. #include <OpenGLES/ES2/gl.h>
  17. #include <OpenGLES/ES2/glext.h>
  18. #ifdef __OBJC__
  19. #import <Foundation/Foundation.h>
  20. #import <UIKit/UIKit.h>
  21. #endif
  22. #ifdef __cplusplus
  23. #include <vector>
  24. #include <string>
  25. #include <map>
  26. #include <list>
  27. #include <memory>
  28. #include <functional>
  29. #include <thread>
  30. #include <mutex>
  31. #include <unordered_map>
  32. #include <list>
  33. #include <algorithm>
  34. #include <cstdint>
  35. #include <stack>
  36. #endif