added raden launch

This commit is contained in:
2025-11-19 12:52:55 -05:00
parent 86ade33bef
commit 533ec9d520
28 changed files with 2412 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// lib_file_exists.ks is a means of checking for optional dependencies, or checking whether a file exists before attempting to run it.
// Copyright © 2015,2023 KSLib team
// Lic. MIT
@LAZYGLOBAL off.
@CLOBBERBUILTINS off.
function file_exists{
parameter fileName.
local fileList is list().
local found is false.
list files in fileList.
for file in fileList {
if file = fileName {
set found to true.
break.
}
}
return found.
}