chicken_dy/Assets/Plugins/Ios/NativeTool/NativeTool.h

25 lines
500 B
C
Raw Normal View History

//
// UUIDManager.h
// Unity-iPhone
//
// Created by fotoable on 2020/6/29.
//
#import <Foundation/Foundation.h>
//#import "JKRBDMuteSwitch/RBDMuteSwitch.h"
NS_ASSUME_NONNULL_BEGIN
@interface NativeTool : NSObject//<RBDMuteSwitchDelegate>
typedef void (^BoolResultDel)(BOOL);
+(NativeTool *) getInstance;
-(void)shake:(int)pType Intensity:(float)pIntensity;
-(void)shareWithTitle:(NSString *)pTitle Url:(NSString *)pUrl ResultCallback:(BoolResultDel)pResultDel;
@end
NS_ASSUME_NONNULL_END