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

16 lines
355 B
Python

from .abc import Style
from .type import Texture
from source.path import path_image
path = path_image / "input"
class Input:
"""
Regroupe les textures des entrées de texte.
"""
class Style1(Style):
normal = Texture(path / "normal.png")
active = Texture(path / "active.png")
error = Texture(path / "error.png")