mirror of
https://github.com/kingomarnajjar/ChatDev.git
synced 2026-07-25 22:27:29 +10:00
11 lines
No EOL
195 B
Python
11 lines
No EOL
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() |