mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
18 lines
480 B
TypeScript
18 lines
480 B
TypeScript
declare namespace SDK {
|
|
class IBehaviorInstanceBase {
|
|
|
|
constructor(sdkBehaviorType: SDK.IBehaviorTypeBase, iBehaviorInstance: SDK.IBehaviorInstance);
|
|
|
|
_sdkBehaviorType: SDK.IBehaviorTypeBase;
|
|
_behaviorInstance: SDK.IBehaviorInstance;
|
|
|
|
GetBehaviorInstance(): SDK.IBehaviorInstance;
|
|
GetSdkBehaviorType(): SDK.IBehaviorTypeBase;
|
|
|
|
Release(): void;
|
|
OnCreate(): void;
|
|
|
|
OnPropertyChanged(id: string, value: EditorPropertyValueType): void;
|
|
OnAddedInEditor(): void;
|
|
}
|
|
} |