7 lines
86 B
C++
7 lines
86 B
C++
![]() |
#include "Card.hpp"
|
||
|
|
||
|
Card::Card(Month month, int type) :
|
||
|
suit(month), type(type)
|
||
|
{
|
||
|
|
||
|
}
|