22 lines
391 B
Objective-C
22 lines
391 B
Objective-C
//
|
|
// WXApiManager.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by wei liu on 2018/1/8.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "WXApi.h"
|
|
|
|
@interface WXApiManager : NSObject<WXApiDelegate>
|
|
|
|
+ (instancetype)sharedManager;
|
|
|
|
-(UIImage*) thumbScaleImage:(UIImage *)image toByte:(NSUInteger)maxLength;
|
|
|
|
-(void)SendGameDataMessage:(NSString*)dataString;
|
|
|
|
//@property (nonatomic, strong)NSString
|
|
|
|
@end
|