TapCommon-Unity/Plugins/iOS/TapCommonSDK.framework/Headers/TapPropertiesDelegateProxy.h

23 lines
414 B
C
Raw Normal View History

//
// TapDBDynamicPropertiesDelegate.h
// TapDB
//
// Created by xe on 2021/4/13.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
typedef const char* _Nullable (*TapPropertiesDelegate)(const char*);
@interface TapPropertiesDelegateProxy : NSObject
2021-07-22 10:16:19 +08:00
- (instancetype)initWithDelegate: (TapPropertiesDelegate)delegate key:(NSString*)key;
- (NSString*) getProperties;
@end
NS_ASSUME_NONNULL_END