mirror of
https://github.com/EricPlayZ/EGameTools.git
synced 2025-07-19 01:47:50 +08:00
20 lines
616 B
Python
20 lines
616 B
Python
import importlib
|
|
|
|
from ExportClassH import UI
|
|
|
|
def Main():
|
|
"""Main entry point for the script."""
|
|
UI.OpenMainDlg()
|
|
|
|
# Reload modules to apply any changes
|
|
from ExportClassH import Config, Utils, IDAUtils, ClassDefs, JSONGen, RTTIAnalyzer#, ClassParser, HeaderGen, ProjectManager
|
|
importlib.reload(Config)
|
|
importlib.reload(Utils)
|
|
importlib.reload(IDAUtils)
|
|
importlib.reload(ClassDefs)
|
|
importlib.reload(JSONGen)
|
|
importlib.reload(RTTIAnalyzer)
|
|
# importlib.reload(ClassParser)
|
|
# importlib.reload(HeaderGen)
|
|
# importlib.reload(ProjectManager)
|
|
importlib.reload(UI) |