Pixel-Composer/scripts/directory_functions/directory_functions.gml
2023-12-05 19:49:18 +07:00

6 lines
106 B
Plaintext

function directory_verify(path) {
INLINE
if(directory_exists(path)) return;
directory_create(path);
}