mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-27 20:21:24 +08:00
13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
|
|
import type { SDKInstanceClass } from "./instance.ts";
|
|
|
|
const C3 = globalThis.C3;
|
|
|
|
C3.Plugins.EsotericSoftware_SpineConstruct3.Exps =
|
|
{
|
|
Double (this: SDKInstanceClass, num: number) {
|
|
return num * 2;
|
|
}
|
|
};
|
|
|