9 lines
79 B
Python
9 lines
79 B
Python
import window
|
|
|
|
def main():
|
|
ui = window.Window(600, 600)
|
|
|
|
ui.show()
|
|
|
|
main()
|