L3-Bataille-Navale/source/gui/texture/Input.py
2023-02-19 12:02:12 +01:00

11 lines
257 B
Python

from . import _image_path
from .abc import Style
_image_path = _image_path + "input/"
class Input:
class Style1(Style):
normal = _image_path + "normal.png"
active = _image_path + "active.png"
error = _image_path + "error.png"