Pixel-Composer/scripts/shell_helper/shell_helper.gml

4 lines
144 B
Plaintext
Raw Normal View History

2022-12-16 09:18:09 +01:00
function shellOpenExplorer(path) {
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
execute_shell_simple(_windir, path);
}