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

15 lines
314 B
Python

from .abc import Style
from .type import Texture
from source.path import path_image
path = path_image / "checkbox"
class Checkbox:
"""
Regroupe les textures des checkbox.
"""
class Style1(Style):
disabled = Texture(path / "disabled.png")
enabled = Texture(path / "enabled.png")