mirror of
https://github.com/peterantypas/maiana.git
synced 2025-05-20 01:10:09 -07:00
10 lines
160 B
Python
10 lines
160 B
Python
import wx
|
|
from mainwindow import MainWindow
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app = wx.App()
|
|
window = MainWindow()
|
|
window.Show(True)
|
|
app.MainLoop()
|