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

15 lines
356 B
Python

from .abc import Style
from .type import Animation
from source.path import path_image
path = path_image / "result"
class Result:
"""
Regroupe les animations de fin de jeu
"""
class Style1(Style):
victory = Animation((path / "victory").iterdir(), 0.04, False)
defeat = Animation((path / "defeat").iterdir(), 0.04, False)