country国家
China中国
capital首都
pattern图案
country国家
China中国
capital首都
pattern图案
country国家
China中国
capital首都
pattern图案
import pygame,random
pygame.init()
enemy1 = pygame.image.load("images/enemy1.png")
enemy2 = pygame.image.load("images/enemy2.png")
enemy3 = pygame.image.load("images/enemy3.png")
class Enemy():
def __init__(self,x,y,width,height,type,life,score,img):
self.width=width
self.height=height
self.x=random.random(0,480-self.width)
self.y=y
self.type=type
self.life=life
self.score=score
self.img=img
发表回复