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

12 lines
321 B
TypeScript

declare namespace SDK {
class IBehaviorInstance {
GetProject(): SDK.IProject;
GetPropertyValue(id: string): EditorPropertyValueType;
SetPropertyValue(id: string, value: EditorPropertyValueType): void;
GetObjectInstance(): SDK.IObjectInstance;
GetExternalSdkInstance(): SDK.IBehaviorInstanceBase | null;
}
}