CacheTool.h 522 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CacheTool.h
  3. // Unity-iPhone
  4. //
  5. // Created by duowan123 on 2022/5/7.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "GameInfo.h"
  9. #import "MYFactoryManager.h"
  10. @interface CacheTool : NSObject
  11. +(void)cacheGameInfoInfo:(GameInfo*)gameInfo;
  12. +(NSString*)getUserInfo;
  13. +(NSString*)getToken;
  14. +(NSString*)getGameId;
  15. +(NSString*)getGameType;
  16. +(NSString*)getGameMac;
  17. +(NSString*)getInviteUser;
  18. +(NSString*)getInviteInfo;
  19. //获取缓存vibrate
  20. +(NSString*)getGameVibrate;
  21. //获取缓存debug
  22. +(NSString*)getGameDebug;
  23. @end