-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathgdbaseevent.js
More file actions
26 lines (26 loc) · 893 Bytes
/
gdbaseevent.js
File metadata and controls
26 lines (26 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdBaseEvent extends gdBaseEvent {
constructor(): void;
clone(): gdBaseEvent;
getType(): string;
setType(type: string): void;
isExecutable(): boolean;
canHaveSubEvents(): boolean;
hasSubEvents(): boolean;
getSubEvents(): gdEventsList;
canHaveVariables(): boolean;
hasVariables(): boolean;
getVariables(): gdVariablesContainer;
isDisabled(): boolean;
setDisabled(disable: boolean): void;
isFolded(): boolean;
setFolded(folded: boolean): void;
serializeTo(element: gdSerializerElement): void;
unserializeFrom(project: gdProject, element: gdSerializerElement): void;
getAiGeneratedEventId(): string;
setAiGeneratedEventId(aiGeneratedEventId: string): void;
getEventBookmarkId(): string;
setEventBookmarkId(eventBookmarkId: string): void;
delete(): void;
ptr: number;
};