"""Entrypoint for asteroids game""" import pygame from constants import SCREEN_HEIGHT, SCREEN_WIDTH def main(): """Main method for asteroids game""" print(f"Starting Asteroids with pygame version: {pygame.version.ver}") print(f"Screen width: {SCREEN_WIDTH}") print(f"Screen height: {SCREEN_HEIGHT}") if __name__ == "__main__": main()