KoiKoi/engine/Card.cpp
2022-01-15 16:45:52 +01:00

7 lines
86 B
C++

#include "Card.hpp"
Card::Card(Month month, int type) :
suit(month), type(type)
{
}