美文网首页
飞机大战错误

飞机大战错误

作者: 吼吼帅气的昵称 | 来源:发表于2020-02-14 15:42 被阅读0次

    ‘’‘

    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()

    ’‘’

    相关文章

      网友评论

          本文标题:飞机大战错误

          本文链接:https://www.haomeiwen.com/subject/auzdfhtx.html