added a caption to the window

This commit is contained in:
Faraphel 2023-02-18 20:21:21 +01:00
parent e3fbd890fa
commit 1a36cd2372
2 changed files with 1 additions and 3 deletions

View file

@ -1,4 +1,3 @@
A faire :
- Optimiser les textures dans un dictionnaires
- Optimiser les textures similaire dans un atlas
- Permettre de forcer la taille de la fenêtre à un ratio

View file

@ -3,9 +3,8 @@ import pyglet
from source.gui.scene import MainMenu
from source.gui.window import GameWindow
# Create a new window
window = GameWindow(resizable=True, vsync=True)
window = GameWindow(resizable=True, vsync=True, caption="Bataille Navale")
window.add_scene(MainMenu)
# Start the event loop