This commit is contained in:
2025-09-24 16:54:52 +08:00
parent 45f86ba95e
commit 57a7e9216e
22 changed files with 1647 additions and 102 deletions

10
shortdeck/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
from poker.card import ShortDeckRank
from .hand_evaluator import ShortDeckHandEvaluator
from .hand_ranking import ShortDeckHandType, ShortDeckHandRanking
__all__ = [
'ShortDeckRank',
'ShortDeckHandEvaluator',
'ShortDeckHandType',
'ShortDeckHandRanking'
]