ChatDev/WareHouse/pingpong_THUNLP_20230817193956/main.py
2023-09-04 19:24:28 +08:00

11 lines
195 B
Python

'''
This is the main file that runs the pingpong game.
'''
import pygame
from game import Game
def main():
pygame.init()
game = Game()
game.run()
if __name__ == "__main__":
main()