view start_release.py @ 23:57106cf03b14 grumpy-goblin

Traipse 'OpenRPG' {090830-00} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Grumpy-Goblin' was designed to stablize the software and make it easy for users to install and run. Update Summary: Update dirpath_tools to remove the dependency of the OPENRPG_BASE system key. The new file is compatible with older location.py files and with the new location.py file.
author sirebral
date Sun, 30 Aug 2009 17:58:31 -0500
parents e8260c6cb309
children ff154cf3350c
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!"