更新 'Alien_Invasion.py'

This commit is contained in:
206530225 2021-06-23 12:57:22 +08:00
parent e281cf0523
commit 2d907f2dea
1 changed files with 7 additions and 0 deletions

View File

@ -1,8 +1,15 @@
import sys
from time import sleep
import pygame
from settings import Settings
from game_stats import GameStats
from scoreboard import Scoreboard
from button import Button
from ship import Ship
from bullet import Bullet
from alien import Alien
class AlienInvasion: # 管理游戏资源和行为的类11