mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-24 11:58:05 +01:00
4 lines
107 B
Text
4 lines
107 B
Text
|
function file_copy_override(src, dest) {
|
||
|
if(file_exists(dest)) file_delete(dest);
|
||
|
file_copy(src, dest);
|
||
|
}
|