added old code, fixed it (mostly), merged some new code to the old code, made it mostly runnable

This commit is contained in:
2024-01-21 23:03:24 +01:00
parent d6ba33874d
commit 5daffa8a8e
192 changed files with 2373 additions and 44 deletions

11
New_Client/main.py Normal file
View File

@@ -0,0 +1,11 @@
from App import App
from Classes.Engine.Logger import Logger
from Classes.Engine.Utils.StringUtils import StringUtils
from Classes.Engine.Utils.Path import PathUtil
if __name__ == "__main__":
logger = Logger(PathUtil.getAbsolutePathTo("log/"+StringUtils.get_random_string(8)+".log"))
logger.info("starting game engine")
game = App(logger)