mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-25 12:23:58 -04:00
9b4151f64c
* The dialog can be reached from the hidden drop-down menu of "Scene objects".
18 lines
619 B
JavaScript
18 lines
619 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdAbstractFileSystemJS extends gdAbstractFileSystem {
|
|
constructor(): void;
|
|
mkDir(dir: string): void;
|
|
dirExists(dir: string): void;
|
|
clearDir(dir: string): void;
|
|
getTempDir(): string;
|
|
fileNameFrom(dir: string): string;
|
|
dirNameFrom(dir: string): string;
|
|
isAbsolute(fn: string): boolean;
|
|
copyFile(src: string, dest: string): void;
|
|
writeToFile(fn: string, content: string): void;
|
|
readFile(fn: string): string;
|
|
readDir(dir: string): gdVectorString;
|
|
fileExists(fn: string): boolean;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |