Commit 15c29c97 by BellCodeEditor

auto save

parent 2742489a
Showing with 8 additions and 7 deletions
......@@ -2,13 +2,14 @@ import pygame
from pygame import locals
import random
class Block(pygame.sprite.Sprite):
def __init__(self,image1,image2,image3):
super().__init__()
self.image=random.choice([image1,image2,image3])
self.rect=self.image.get_rect()
self.rect.x=1000
self.rect.y=500-self.rect.height
class Block(pygame.sprite.Spite):
def _init_(self,imag1,imag2,imag3):
super()._init_()
self.image = random.choice([imag1,imag2,imag3])
self rect = self.image.get_rect()
self.rect.x = 1000
self.rect.y = 500 - self.rect.height
pygame.init() # 初始化
# 创建一个窗口
screen = pygame.display.set_mode((1000, 600))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment