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

8 lines
384 B
TypeScript

type EditorACParameterType = number | string | SDK.IObjectClass;
declare namespace SDK {
class IEventBlock extends IEventParentRow {
AddCondition(iObjectClass: SDK.IObjectClass, iBehaviorType: null, cndId: string, params?: EditorACParameterType[]): void;
AddAction(iObjectClass: SDK.IObjectClass, iBehaviorType: null, actId: string, params?: EditorACParameterType[]): void;
}
}