Files
cup_edit/ios/Classes/PolyvoxFilamentPlugin.m
Nick Fisher 80a781a3c4 iOS fixes
2023-04-20 22:15:50 +08:00

19 lines
662 B
Objective-C

#import "PolyvoxFilamentPlugin.h"
#if __has_include(<polyvox_filament/polyvox_filament-Swift.h>)
#import <polyvox_filament/polyvox_filament-Swift.h>
#else
// Support project import fallback if the generated compatibility header
// is not copied when this plugin is created as a library.
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
#import "polyvox_filament-Swift.h"
#endif
#include "PolyvoxFilamentApi.h"
@implementation PolyvoxFilamentPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftPolyvoxFilamentPlugin registerWithRegistrar:registrar];
ios_dummy();
}
@end