Util.h
资源名称:PushBox.rar [点击查看]
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:1k
源码类别:
iPhone
开发平台:
Objective-C
- #ifndef Util_h
- #define Util_h
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <unistd.h>
- #define COVERVIEW 0
- #define GAMEVIEW 1
- #define LISTVIEW 2
- #define SETTINGVIEW 3
- #define ABOUTVIEW 4
- // 总关数
- #define TOTAL_CHAPTER 100
- #define MAP_FILE_SUFFIX "map"
- // 上次退出时的状态
- #define MESS_PATH "mess.r"
- #endif
- #import <Foundation/Foundation.h>
- #import <CoreFoundation/CoreFoundation.h>
- @interface Util:NSObject
- {
- }
- +(void)Load:(NSString*)path;
- +(void)Save:(NSString*)path;
- +(bool)FileExist:(NSString*)path;
- +(bool)CheckMessExist;
- +(int)GetRandNum;
- @end