Wuyx
2016-12-19 dc3b29203bbfa60bc885d370f2cc7949359b6042
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  WALuaHupProxy.h
//  WACocos2dxLua
//
//  Created by wuyx on 16/9/20.
//
//
 
#import <Foundation/Foundation.h>
#import <WASdkIntf/WASdkIntf.h>
@interface WALuaHupProxy : NSObject
/*!
 @abstract 检查更新
 @param handler 回调
 */
+(void)checkUpdate:(NSDictionary*)dict;
/*!
 @abstract 开始更新
 @param handler 回调
 */
+(void)startUpdate:(NSDictionary*)dict;
/*!
 @abstract 获取更新包信息
 @return WAUpdateInfo 更新包信息
 */
+(WAUpdateInfo*)getPatchInfo;
@end