コード例 #1
0
ファイル: main.py プロジェクト: C-Kimber/Platformer
def main():
    pygame.font.init()
    c = SpaceshipAdventure(600, 400, 30)
    c.main_loop()
    return
コード例 #2
0
def main():
    pygame.font.init()
    c = SpaceshipAdventure(2000,1200, 64)
    c.main_loop()
    return
コード例 #3
0
ファイル: main.py プロジェクト: mordod/Codecamp2013
def main():
    pygame.font.init()
    c = SpaceshipAdventure(1000, 700, 30)
    c.main_loop()
    return