GigaPasjans
Loading...
Searching...
No Matches
CardConstants.h
1//Wykonane przez Piotra ChudziƄskiego w dniu 15.04.2025
2#pragma once
3
4#include <foundation/math/Int2.h>
5#include <andromenda/Color.h>
6
7#define TABLEAU_STACKS 7
8#define TABLEAU_FOUNDATIONS 4
9
10namespace Game::CardConstants
11{
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;
20}