mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 23:34:53 +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;
|
|
}
|