mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 09:35:27 -04:00
18 lines
955 B
JavaScript
18 lines
955 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdEventsFunctionsContainer {
|
|
insertNewEventsFunction(name: string, pos: number): gdEventsFunction;
|
|
insertEventsFunction(eventsFunction: gdEventsFunction, pos: number): gdEventsFunction;
|
|
hasEventsFunctionNamed(name: string): boolean;
|
|
getEventsFunction(name: string): gdEventsFunction;
|
|
getEventsFunctionAt(pos: number): gdEventsFunction;
|
|
removeEventsFunction(name: string): void;
|
|
moveEventsFunction(oldIndex: number, newIndex: number): void;
|
|
getEventsFunctionsCount(): number;
|
|
getEventsFunctionPosition(eventsFunction: gdEventsFunction): number;
|
|
insertNewEventsFunctionInFolder(name: string, folder: gdFunctionFolderOrFunction, pos: number): gdEventsFunction;
|
|
getRootFolder(): gdFunctionFolderOrFunction;
|
|
getAllFunctionFolderOrFunction(): gdVectorFunctionFolderOrFunction;
|
|
addMissingFunctionsInRootFolder(): void;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |