Trying to move the view.
[krufty_fps.git] / game.py
blobfd551b08872013ff40f532c546e692c2c18f9713
1 #!/usr/bin/python
3 # This is an implementation of what I have for the game
4 # in python
6 import sys, os
7 import threading
9 # import ogre
10 # from pandac.PandaModules import *
12 def rendermain():
13 print "rendermain(): Not implemented yet"
15 def netmain():
16 print "netmain(): not implemented yet"
18 def main():
19 # Here is where we would parse command line arguments...
21 if (len(sys.argv) > 1):
22 config = sys.argv[1]
23 else:
24 config = "config.xml"
26 print "Config is", config
28 if __name__ == '__main__':
29 main()