4#include <foundation/math/Int2.h>
5#include <andromenda/Color.h>
7#define TABLEAU_STACKS 7
8#define TABLEAU_FOUNDATIONS 4
10namespace Game::CardConstants
12 static constexpr Int2 CardSize = Int2{11,9};
13 static constexpr int32 HorizontalOffset = 2;
14 static constexpr int32 StockSize = 24;
15 static constexpr int32 TableauStacks = TABLEAU_STACKS;
16 static constexpr int32 FoundationStacks = TABLEAU_FOUNDATIONS;
17 static constexpr int32 TableauSize = 28;
18 static constexpr Color ActiveColor = Color::Green;
19 static constexpr Color GrabbedColor = Color::Cyan;