view start_developer.py @ 55:0b79d5dbbe9e traipse_dev

Finalizing .. sorry Win users. I will work on the GUI later.
author sirebral
date Thu, 06 Aug 2009 17:55:27 -0500
parents 4385a7d0efd1
children
line wrap: on
line source

#!/usr/bin/env python

import pyver
pyver.checkPyVersion()

#Update Manager
from orpg.orpg_wx import *
import upmana.updatemana
app = upmana.updatemana.updateApp(0)
app.MainLoop()

#Main Program
from orpg.orpg_wx import *
import orpg.main

if WXLOADED:
    mainapp = orpg.main.orpgApp(0)
    mainapp.MainLoop()
else:
    print "You really really need wx!"