00001 #!/usr/bin/env python 00002 # 00003 # Python Game and Chat client 00004 # version 1.0.0 00005 # 00006 # Written by Bart Spaans, Sep 2007 00007 # http://www.onderstekop.nl/coding/p8_Python_Game_and_Chat_Client/ 00008 # 00009 # Keep checking for new updates (automatic updating has not been covered yet 00010 # because this version is still very buggy 00011 # 00012 00013 from clientVars import * 00014 from GUI import * 00015 from Messages import * 00016 00017 print APP_NAME, APP_VERSION, "started...\n" 00018 00019 msg = Messages(); 00020 startGUI(msg)
1.5.1