L3-Bataille-Navale/main.pyw
2023-02-19 12:02:12 +01:00

13 lines
272 B
Python

import pyglet
from source.gui.scene import MainMenu
from source.gui.window import GameWindow
# Create a new window
window = GameWindow(resizable=True, vsync=True, caption="Bataille Navale")
window.add_scene(MainMenu)
# Start the event loop
pyglet.app.run(interval=0)