上传文件至 ''
This commit is contained in:
parent
dcc3148308
commit
96c04bc5c4
|
|
@ -0,0 +1,16 @@
|
||||||
|
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():
|
||||||
|
pygame.init()
|
||||||
|
ai_settings = Settings()
|
||||||
|
screen = pygame.display.set_mode((ai_settings.screen_width, ai_settings.screen_height))
|
||||||
|
pygame.display.set_caption("Alien Invasion")
|
||||||
Loading…
Reference in New Issue