Pixel-Composer/scripts/directory_functions/directory_functions.gml

6 lines
106 B
Plaintext
Raw Normal View History

function directory_verify(path) {
2023-12-05 13:49:18 +01:00
INLINE
if(directory_exists(path)) return;
directory_create(path);
}