#!/usr/bin/env python
"""
/***************************************************************************

	Author			:Charles B. Cosse 
	
	Email			:ccosse@gmail.com
					
	Website			:www.asymptopia.org
	
	Copyright		:(C) 2002-2007 Asymptopia Software.
	
 ***************************************************************************/
"""

import os,sys,string,time
from wxPython.wx import *
from tuxmathscrabble.educore import *
from tuxmathscrabble.tuxmathscrabble import *

if __name__ == "__main__":
	appdir='tuxmathscrabble'
	x=TuxMathScrabble(appdir)
	x.MainLoop()
	
