mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-25 12:23:58 -04:00
binding for compilation
This commit is contained in:
@@ -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 {
|
||||
|
||||
Vendored
+2
@@ -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 {
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user