上传者: 38686860
|
上传时间: 2021-12-20 20:25:54
|
文件大小: 73KB
|
文件类型: -
利用pygame实现了简易版飞机大战。源代码如下:
# -*- coding:utf-8 -*-
import pygame
import sys
from pygame.locals import *
from pygame.font import *
import time
import random
class Hero(object):
#玩家 英雄类
def __init__(self, screen_temp):
self.x = 210
self.y = 700
self.life = 21
# self.life = 100
self.image =