guru_sdk/guru_app/plugins/soundpool/ios/Classes/SoundpoolPlugin.m

13 lines
331 B
Matlab
Raw Normal View History

#import "SoundpoolPlugin.h"
#if __has_include(<soundpool/soundpool-Swift.h>)
#import <soundpool/soundpool-Swift.h>
#else
#import "soundpool-Swift.h"
#endif
@implementation SoundpoolPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftSoundpoolPlugin registerWithRegistrar:registrar];
}
@end