diff --git a/src/card.py b/src/card.py index c061456..3329f5d 100644 --- a/src/card.py +++ b/src/card.py @@ -3,6 +3,14 @@ playFs = {} scoreFs = {} +class Card: + def __init__(self, name, type, cost, play, score): + self.name = name + self.type = type + self.cost = cost + self.play = play + self.score = score + def NewCard(name, type, cost, play, score): card = pb.Card()