13 lines
293 B
Python
13 lines
293 B
Python
import ctypes
|
|
ctypes.windll.shcore.SetProcessDpiAwareness(1)
|
|
|
|
from vrct_gui.splash_window import SplashWindow
|
|
splash = SplashWindow()
|
|
splash.showSplash()
|
|
|
|
import controller
|
|
|
|
if __name__ == "__main__":
|
|
controller.createMainWindow()
|
|
splash.destroySplash()
|
|
controller.showMainWindow() |