mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-24 10:41:24 +08:00
10 lines
364 B
TypeScript
10 lines
364 B
TypeScript
export * from "./require-shim"
|
|
export * from "./SpinePlugin"
|
|
export * from "./SpineGameObject"
|
|
export * from "./mixins"
|
|
export * from "@esotericsoftware/spine-core";
|
|
export * from "@esotericsoftware/spine-webgl";
|
|
import { SpinePlugin } from "./SpinePlugin";
|
|
(window as any).spine = { SpinePlugin: SpinePlugin };
|
|
(window as any)["spine.SpinePlugin"] = SpinePlugin;
|