mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
declare namespace SDK {
|
|
class IBehaviorBase {
|
|
|
|
constructor(id: string);
|
|
|
|
_info: SDK.IBehaviorInfo;
|
|
|
|
Release(): void;
|
|
|
|
static Register(id: string, class_: new () => SDK.IBehaviorBase): void;
|
|
}
|
|
} |