Adding in pygame, and getting a window to display/close

This commit is contained in:
franky212
2024-10-28 15:06:43 -06:00
parent cd6cffd9df
commit 90d55e89b7
4 changed files with 32 additions and 0 deletions

7
constants.py Normal file
View File

@@ -0,0 +1,7 @@
SCREEN_WIDTH = 1280
SCREEN_HEIGHT = 720
ASTEROID_MIN_RADIUS = 20
ASTEROID_KINDS = 3
ASTEROID_SPAWN_RATE = 0.8 # seconds
ASTEROID_MAX_RADIUS = ASTEROID_MIN_RADIUS * ASTEROID_KINDS