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

23 lines
414 B
C
Raw Normal View History

2023-03-20 16:55:16 +08:00
//
// 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
- (instancetype)initWithDelegate: (TapPropertiesDelegate)delegate key:(NSString*)key;
- (NSString*) getProperties;
@end
NS_ASSUME_NONNULL_END