1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| //
| // WALuaApwProxy.h
| // WACocos2dxLua
| //
| // Created by wuyx on 16/9/20.
| //
| //
|
| #import <Foundation/Foundation.h>
| #import <WASdkIntf/WASdkIntf.h>
| @interface WALuaApwProxy : NSObject
| /*!
| @abstract 显示浮动按钮
| */
| +(void)showEntryFlowIcon;
| /*!
| @abstract 隐藏浮动按钮
| */
| +(void)hideEntryFlowIcon;
| @end
|
|