moved files and added compile script

This commit is contained in:
2024-09-28 15:45:39 +02:00
parent d7c5d092ff
commit 938a27e12b
+2 -3
View File
@@ -3,11 +3,10 @@ import sys
import glob
def compileClasses(classesPath):
global resultString
resultString = ""
global resultString = ""
for name in glob.glob(f"{classesPath}/**/*.lua"):
with open(name, 'r') as file:
resutlString += file.read()
resultString += file.read()
return resultString
def compile(root, target):