added a caption to the window
This commit is contained in:
parent
e3fbd890fa
commit
1a36cd2372
2 changed files with 1 additions and 3 deletions
1
NOTE.md
1
NOTE.md
|
@ -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
|
||||
|
|
3
main.pyw
3
main.pyw
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue