UPDATE: handler before start game

This commit is contained in:
2025-11-05 20:44:41 +07:00
parent 892ea44c17
commit 52134c2200
6 changed files with 185 additions and 197 deletions

View File

@@ -31,6 +31,22 @@ export function FileExistsInZip(archivePath, fileInside) {
return $Call.ByID(2509699047, archivePath, fileInside);
}
/**
* @param {string} path
* @returns {$CancellablePromise<string>}
*/
export function GetDir(path) {
return $Call.ByID(1744445742, path);
}
/**
* @param {string[]} paths
* @returns {$CancellablePromise<string>}
*/
export function Join(...paths) {
return $Call.ByID(2460588289, paths);
}
/**
* @param {string} path
* @returns {$CancellablePromise<[boolean, string]>}
@@ -54,6 +70,14 @@ export function PickFolder() {
return $Call.ByID(3654471460);
}
/**
* @param {string} path
* @returns {$CancellablePromise<void>}
*/
export function RemoveFile(path) {
return $Call.ByID(3206735043, path);
}
/**
* @param {string} path
* @returns {$CancellablePromise<boolean>}