Util.h
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:1k
源码类别:

iPhone

开发平台:

Objective-C

  1. #ifndef Util_h
  2. #define Util_h
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <time.h>
  6. #include <unistd.h>
  7. #define COVERVIEW 0
  8. #define GAMEVIEW 1
  9. #define LISTVIEW 2
  10. #define SETTINGVIEW 3
  11. #define ABOUTVIEW 4
  12. // 总关数
  13. #define TOTAL_CHAPTER 100
  14. #define MAP_FILE_SUFFIX "map"
  15. // 上次退出时的状态
  16. #define MESS_PATH "mess.r"
  17. #endif
  18. #import <Foundation/Foundation.h>
  19. #import <CoreFoundation/CoreFoundation.h>
  20. @interface Util:NSObject
  21. {    
  22. }
  23. +(void)Load:(NSString*)path;
  24. +(void)Save:(NSString*)path;
  25. +(bool)FileExist:(NSString*)path;
  26. +(bool)CheckMessExist;
  27. +(int)GetRandNum;
  28. @end