alien_invasion.py 文件源码

python
阅读 41 收藏 0 点赞 0 评论 0

项目:Pythonlearn 作者: godzoco 项目源码 文件源码
def run_game():
    # Initialize pygame, settings, and screen object.
    pygame.init()
    ai_settings = Settings()
    screen = pygame.display.set_mode(
        (ai_settings.screen_width, ai_settings.screen_height))
    pygame.display.set_caption("Alien Invasion")

    # Set the background color.
    bg_color = (230, 230, 230)

    # Make a ship.
    ship = Ship(ai_settings, screen)

    # Start the main loop for the game.
    while True:
        gf.check_events(ship)
        ship.update()
        gf.update_screen(ai_settings, screen, ship)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号