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

19 lines
303 B
C++

#pragma once
enum class Month
{
January, February, March, April, May, June, July, August, September, October, November, December
};
class Card
{
public:
Card(Month month, int type);
inline Month GetSuit() { return suit; }
inline int GetType() { return type; }
private:
Month suit;
int type;
};