Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

17 lines
453 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;
}
}