L3-Bataille-Navale/source/gui/texture/Input.py

12 lines
267 B
Python

from . import path
from .abc import Style
from .type import Texture
path = path / "input"
class Input:
class Style1(Style):
normal = Texture(path / "normal.png")
active = Texture(path / "active.png")
error = Texture(path / "error.png")