22 lines
396 B
Objective-C
22 lines
396 B
Objective-C
//
|
|
// UnityAction.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by qyq on 2019/6/22.
|
|
//
|
|
|
|
#import "WXAppDelegate.h"
|
|
|
|
@interface UnityAction : NSObject
|
|
|
|
+(void)login;
|
|
+(void)share:(int)id:(const char*)str:(const char*)func;
|
|
+(int)GetWIFISignalStrength;
|
|
+(int)GetTeleSignalStrength;
|
|
+(int)__GetSignalStrength;
|
|
+(float)GetBatteryLevel;
|
|
+(bool)_ifChargingBattery;
|
|
+(void)CopyToClipboard:(const char*)text;
|
|
|
|
@end
|