diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-04-10 20:39:56 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-04-10 20:40:26 +0300 |
commit | 8c3124e919d9f8e7118fb05f4341c12e54b68c72 (patch) | |
tree | 782554380b312c6817d4a828016c2f090adae471 /src/main.c | |
parent | 8d0a9cd5959ae5474fe0d3ed0a2e2f84731541b1 (diff) | |
download | carcassonne-engine-c-8c3124e919d9f8e7118fb05f4341c12e54b68c72.tar.gz |
feat: support any-matching feature (*) in Tile
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ int main() { { "RRRR", 'R', 0 }, { "FCCC", 'C', 0 }, { "FFFC", 'C', 0 }, - { "CCRR", 'C', 0 }, + { "CCRR", '*', 0 }, { "RFRF", 'R', 0 } }; |