binding for compilation

This commit is contained in:
Aurélien Vivet
2026-02-13 01:26:57 +01:00
parent 49ec23f6ea
commit 833ea5dad0
3 changed files with 7 additions and 0 deletions
+3
View File
@@ -2462,6 +2462,9 @@ interface BaseEvent {
[Const, Ref] DOMString GetAiGeneratedEventId();
void SetAiGeneratedEventId([Const] DOMString aiGeneratedEventId);
[Const, Ref] DOMString GetEventBookmarkId();
void SetEventBookmarkId([Const] DOMString eventBookmarkId);
};
interface StandardEvent {
+2
View File
@@ -1893,6 +1893,8 @@ export class BaseEvent extends EmscriptenObject {
unserializeFrom(project: Project, element: SerializerElement): void;
getAiGeneratedEventId(): string;
setAiGeneratedEventId(aiGeneratedEventId: string): void;
getEventBookmarkId(): string;
setEventBookmarkId(eventBookmarkId: string): void;
}
export class StandardEvent extends BaseEvent {
+2
View File
@@ -19,6 +19,8 @@ declare class gdBaseEvent extends gdBaseEvent {
unserializeFrom(project: gdProject, element: gdSerializerElement): void;
getAiGeneratedEventId(): string;
setAiGeneratedEventId(aiGeneratedEventId: string): void;
getEventBookmarkId(): string;
setEventBookmarkId(eventBookmarkId: string): void;
delete(): void;
ptr: number;
};