Files
asteroids/main.py
T

15 lines
358 B
Python
Raw Normal View History

2026-05-21 15:07:53 -05:00
"""Entrypoint for asteroids game"""
import pygame
2026-05-21 15:10:25 -05:00
from constants import SCREEN_HEIGHT, SCREEN_WIDTH
2026-05-21 15:07:53 -05:00
def main():
"""Main method for asteroids game"""
print(f"Starting Asteroids with pygame version: {pygame.version.ver}")
2026-05-21 15:10:25 -05:00
print(f"Screen width: {SCREEN_WIDTH}")
print(f"Screen height: {SCREEN_HEIGHT}")
2026-05-21 15:07:53 -05:00
if __name__ == "__main__":
main()