7 lines
139 B
Python
Executable File
7 lines
139 B
Python
Executable File
#!/usr/bin/env python3.11
|
|
from game import Window
|
|
|
|
if __name__ == '__main__':
|
|
game = Window("Formula2D", (1000, 800))
|
|
game.main_loop()
|