🎉 Initial source commit

This commit is contained in:
Tony Bark 2025-10-12 13:29:19 -04:00
commit c8b14bd8ae
17 changed files with 3220 additions and 0 deletions

13
decompile_all.py Normal file
View file

@ -0,0 +1,13 @@
from Utilities import extract_folder
from settings import *
ea_folder = 'EA'
if not os.path.exists(ea_folder):
os.mkdir(ea_folder)
gameplay_folder_data = os.path.join(game_folder, 'Data', 'Simulation', 'Gameplay')
gameplay_folder_game = os.path.join(game_folder, 'Game', 'Bin', 'Python')
extract_folder(ea_folder,gameplay_folder_data)
extract_folder(ea_folder,gameplay_folder_game)