180pulok
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
20 additions and
0 deletions
-
games devlopment
|
|
@@ -0,0 +1,20 @@ |
|
|
|
import pygame |
|
|
|
|
|
|
|
pygame.init() |
|
|
|
|
|
|
|
screen = pygame.display.set_mode((640, 480)) |
|
|
|
clock = pygame.time.Clock() |
|
|
|
|
|
|
|
while True: |
|
|
|
for event in pygame.event.get(): |
|
|
|
if event.type == pygame.QUIT: |
|
|
|
pygame.quit() |
|
|
|
sys.exit() |
|
|
|
|
|
|
|
# Update game state |
|
|
|
|
|
|
|
screen.fill((0, 0, 0)) |
|
|
|
# Draw game objects |
|
|
|
|
|
|
|
pygame.display.flip() |
|
|
|
clock.tick(60) |