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

15 lines
316 B
Python

from .abc import Style
from .type import Texture
from source.path import path_image
path = path_image / "scroller"
class Scroller:
"""
Regroupe les textures des scrollers
"""
class Style1(Style):
background = Texture(path / "background.png")
cursor = Texture(path / "cursor.png")