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