"""
+from optparse import OptionParser
+import pygame
+from app import MinWii
def main(wiimoteSupport, fullscreen) :
- import pygame
- from app import MinWii
pygame.init()
minwii = MinWii(wiimoteSupport=wiimoteSupport, fullscreen=fullscreen)
minwii.run()
pygame.quit()
if __name__ == "__main__" :
- from os.path import realpath, sep
- import sys
- from optparse import OptionParser
-
usage = "%prog [options]"
op = OptionParser(usage)
u" [%default]")
options, args = op.parse_args()
- minwiipath = realpath(__file__).split(sep)
- minwiipath = minwiipath[:-2]
- minwiipath = sep.join(minwiipath)
- sys.path.insert(1, minwiipath)
main(options.wiimoteSupport, options.fullscreen)