Files
42-Piscine_Python/07/ex1/__init__.py
2026-03-02 18:32:31 +01:00

8 lines
197 B
Python

from .ArtifactCard import ArtifactCard
from .SpellCard import SpellCard
from .Deck import Deck
__version__ = "1.0.0"
__author__ = "David GAILLETON"
__all__ = ["ArtifactCard", "Deck", "SpellCard"]