11 lines
257 B
Python
11 lines
257 B
Python
from .abc import Style
|
|
from .type import Texture
|
|
from source.path import path_image
|
|
|
|
path = path_image / "checkbox"
|
|
|
|
|
|
class Checkbox:
|
|
class Style1(Style):
|
|
disabled = Texture(path / "disabled.png")
|
|
enabled = Texture(path / "enabled.png")
|