添加 '主程序'

This commit is contained in:
206530130 2021-06-21 18:27:06 +08:00
parent 96c04bc5c4
commit 9e12782d27
1 changed files with 17 additions and 0 deletions

17
主程序 Normal file
View File

@ -0,0 +1,17 @@
import pygame
from settings import Settings
from ship import Ship
import game_functions as gf
from pygame.sprite import Group
from game_stats import GameStats
from button import Button
from scoreboard import Scoreboard
def run_game():
# init初始化背景设置
pygame.init()
ai_settings = Settings()
screen = pygame.display.set_mode((ai_settings.screen_width, ai_settings.screen_height))
pygame.display.set_caption("Alien Invasion")