Skip to content

Commit d7e16ea

Browse files
committed
Update main.py
1 parent 1f5bb96 commit d7e16ea

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

main.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
pygame.init()
66

7-
87
screen = pygame.display.set_mode((500,620))
98
pygame.display.set_caption("Python Tetris")
109

@@ -13,7 +12,6 @@
1312
next_title_surface = title_font.render("Next", True, Colors.white)
1413
game_over_surface = title_font.render("GAME OVER", True, Colors.white)
1514

16-
1715
score_rect = pygame.Rect(320, 55, 170, 60)
1816
next_rect = pygame.Rect(320, 215, 170, 180)
1917

@@ -24,7 +22,6 @@
2422
GAME_UPDATE = pygame.USEREVENT
2523
pygame.time.set_timer(GAME_UPDATE, 200)
2624

27-
2825
while True:
2926
for event in pygame.event.get():
3027

0 commit comments

Comments
 (0)