We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f5bb96 commit d7e16eaCopy full SHA for d7e16ea
1 file changed
main.py
@@ -4,7 +4,6 @@
4
5
pygame.init()
6
7
-
8
screen = pygame.display.set_mode((500,620))
9
pygame.display.set_caption("Python Tetris")
10
@@ -13,7 +12,6 @@
13
12
next_title_surface = title_font.render("Next", True, Colors.white)
14
game_over_surface = title_font.render("GAME OVER", True, Colors.white)
15
16
17
score_rect = pygame.Rect(320, 55, 170, 60)
18
next_rect = pygame.Rect(320, 215, 170, 180)
19
@@ -24,7 +22,6 @@
24
22
GAME_UPDATE = pygame.USEREVENT
25
23
pygame.time.set_timer(GAME_UPDATE, 200)
26
27
28
while True:
29
for event in pygame.event.get():
30
0 commit comments