Inital commit. Added class to handle generating the main window.

This commit is contained in:
2020-07-08 14:22:07 -05:00
commit 6f25f9e0d8
3 changed files with 25 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import window
def main():
ui = window.Window(600, 600)
ui.show()
main()