27 lines
701 B
Python
27 lines
701 B
Python
import pygame
|
|
from player import Player
|
|
from constants import *
|
|
|
|
|
|
def main():
|
|
print("Starting asteroids!")
|
|
print(f"Screen width: {SCREEN_WIDTH}")
|
|
print(f"Screen height: {SCREEN_HEIGHT}")
|
|
pygame.init()
|
|
clock = pygame.time.Clock()
|
|
dt = 0
|
|
screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
|
|
player = Player(SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2)
|
|
while True:
|
|
for event in pygame.event.get():
|
|
if event.type == pygame.QUIT:
|
|
return
|
|
pygame.Surface.fill(screen, (0, 0, 0))
|
|
player.draw(screen)
|
|
pygame.display.flip()
|
|
t = clock.tick(60)
|
|
dt = t / 1000
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|