L3-Bataille-Navale/source/gui/texture/Background.py
2023-03-14 23:20:37 +01:00

22 lines
507 B
Python

from .abc import Style
from source.gui.texture.type import Texture
from source.path import path_image
path = path_image / "background"
class Background(Style):
"""
Regroupe les textures de fond
"""
main = Texture(path / "main.png")
settings = Texture(path / "settings.png")
choice = Texture(path / "choice.png")
time = Texture(path / "time.png")
connexion = Texture(path / "connexion.png")
game = Texture(path / "game.png")
error = Texture(path / "error.png")