‘’‘
import pygame
from plane_spritesimport *
class PlaneGame(object):
"""飞机大战主游戏"""
def __init__(self):
print("游戏初始化")
# 1、创建游戏窗口
self.screen = pygame.display.set_mode((480, 700))
# 2、创建游戏时钟
self.clock = pygame.time.Clock()
# 3、调用私有方法,精灵和精灵组的创建
self.__create_sprites()
def __create_sprites(self):
pass
def start_game(self):
print("游戏开始")
if __name__ =='__main__':
# 创建游戏对象
game = PlaneGame()
# 启动游戏
game.start_game()
’‘’
网友评论