mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 09:46:02 +08:00
10 lines
332 B
Dart
10 lines
332 B
Dart
import 'spine_dart.dart';
|
|
export 'spine_dart.dart';
|
|
export 'spine_widget.dart';
|
|
|
|
// Backwards compatibility
|
|
Future<void> initSpineFlutter({bool useStaticLinkage = false, bool enableMemoryDebugging = false}) async {
|
|
await initSpineDart(useStaticLinkage: useStaticLinkage, enableMemoryDebugging: enableMemoryDebugging);
|
|
return;
|
|
}
|