diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-04-15 14:04:03 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-04-15 14:04:03 +0300 |
commit | 0333b7fa851e222c4a4d183ef9ae6d6dab7559cb (patch) | |
tree | 12942f8e71351ec3e08674fc9159fa7a08d7a3f5 /src/carcassonne.h | |
parent | 7f0647e07b6a14e6f4a5ace6dbd4e688f424b8dd (diff) | |
download | carcassonne-engine-c-0333b7fa851e222c4a4d183ef9ae6d6dab7559cb.tar.gz |
feat: add game tileset
Diffstat (limited to 'src/carcassonne.h')
-rw-r--r-- | src/carcassonne.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/carcassonne.h b/src/carcassonne.h index 2bb136c..63ff725 100644 --- a/src/carcassonne.h +++ b/src/carcassonne.h @@ -2,30 +2,3 @@ #include "tile.h" #include "meeple.h" #include "structure.h" - -static const Tile TILESET[19] = { - /* cities */ - { "FFFF", 'F', 0 }, - { "CFFF", 'F', 0 }, - { "FCFC", 'C', 0 }, - { "FCFC", 'F', 0 }, - { "CCFF", 'C', 0 }, - { "CCFF", 'F', 0 }, - { "CCCF", 'C', 0 }, - { "CCCC", 'C', 0 }, - - /* roads */ - { "FFFR", 'R', 0 }, - { "FRFR", 'R', 0 }, - { "FFRR", 'R', 0 }, - { "FRRR", '+', 0 }, - { "RRRR", '+', 0 }, - - /* mix */ - { "CRFR", 'R', 0 }, - { "CFRR", 'R', 0 }, - { "CRRF", 'R', 0 }, - { "CRRR", '+', 0 }, - { "CCRR", '*', 0 }, - { "CCCR", 'C', 0 }, -}; |