1234567891011121314151617181920212223242526272829 |
- //
- // CacheTool.h
- // Unity-iPhone
- //
- // Created by duowan123 on 2022/5/7.
- //
- #import <Foundation/Foundation.h>
- #import "GameInfo.h"
- #import "MYFactoryManager.h"
- @interface CacheTool : NSObject
- +(void)cacheGameInfoInfo:(GameInfo*)gameInfo;
- +(NSString*)getUserInfo;
- +(NSString*)getToken;
- +(NSString*)getGameId;
- +(NSString*)getGameType;
- +(NSString*)getGameMac;
- +(NSString*)getInviteUser;
- +(NSString*)getInviteInfo;
- //获取缓存vibrate
- +(NSString*)getGameVibrate;
- //获取缓存debug
- +(NSString*)getGameDebug;
- @end
|