mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-14 05:06:55 +01:00
8 lines
193 B
Python
8 lines
193 B
Python
from .Combatable import Combatable
|
|
from .Magical import Magical
|
|
from .EliteCard import EliteCard
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "dgaillet"
|
|
__all__ = ["Combatable", "Magical", "EliteCard"]
|