Atlas-Install/main.pyw
2022-06-08 14:39:43 +02:00

8 lines
209 B
Python

from source.gui import install
import sys
# this allows every variable to be accessible from other files, useful for the plugins
self = sys.modules[__name__]
self.window = install.Window()
self.window.run()