First draft of the menu and toolbar for the new interface.

This commit is contained in:
cncfanatics
2010-08-12 17:20:10 +02:00
parent e064963607
commit 263bb9ae7c
7 changed files with 169 additions and 0 deletions

10
run.py
View File

@@ -16,3 +16,13 @@
# You should have received a copy of the GNU Affero General Public License
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
#===============================================================================
from gui.mainFrame import MainFrame
import wx
import os
import sys
if __name__ == "__main__":
pyfa = wx.App(False)
MainFrame()
pyfa.MainLoop()