10 lines
231 B
Python
10 lines
231 B
Python
from vrct_gui.splash_window import SplashWindow
|
|
splash = SplashWindow()
|
|
splash.showSplash()
|
|
|
|
import controller
|
|
|
|
if __name__ == "__main__":
|
|
controller.createMainWindow()
|
|
splash.destroySplash()
|
|
controller.showMainWindow() |