Show window

This program will use wxPython to make things more portable.
This commit is contained in:
Peter McGoron 2021-08-11 13:03:53 -04:00
commit 2c64cdd692
2 changed files with 12 additions and 0 deletions

6
__main__.py Normal file
View File

@ -0,0 +1,6 @@
import wx
import mainwin
app = wx.App(False)
mainwin.MainWin()
app.MainLoop()

6
mainwin.py Normal file
View File

@ -0,0 +1,6 @@
import wx
class MainWin(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, wx.ID_ANY, "Dagon Controller")
self.Show(True)