Browse Source

Create games devlopment

pull/3448/head
180pulok 1 year ago
committed by GitHub
parent
commit
94f7cf7401
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      games devlopment

+ 20
- 0
games devlopment View File

@@ -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)

Loading…
Cancel
Save