mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-25 12:23:58 -04:00
17443587b9
* This is not finished yet: - Documentation needs to be written. - Menu item (and shortcut?) to quickly toggle between a standard event and a else event must be added so it's easy to switch from one to the other. - Design must be adapted to make it clearer that the else event is "linked" to the previous one and is not run if the previous event is run.
8 lines
249 B
JavaScript
8 lines
249 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdElseEvent extends gdBaseEvent {
|
|
constructor(): void;
|
|
getConditions(): gdInstructionsList;
|
|
getActions(): gdInstructionsList;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |