Hi folks.
I have a board game, there are 2 players in a game and they are opponents against each other.
How should I set the number of teams and players for the rules?
Type 1 :
{
"Name": "All",
"TeamCount": {
"Min": 1,
"Max": 1
},
"PlayerCount": {
"Min": 2,
"Max": 2
}
}
]```
Type 2 :
```"Teams": [
{
"Name": "All",
"TeamCount": {
"Min": 2,
"Max": 2
},
"PlayerCount": {
"Min": 1,
"Max": 1
}
}
]```
+ Do both of these rule structures work?
+ If they are correct, which one is the best structure for this kind of game?
I also checked the [rules samples](https://docs.unity.com/ugs/en-us/manual/matchmaker/manual/rules-sample) page, but I coudn't undertand fully.
The sample 1 vs 1 => Team count 2 player count 1
The sample 5v5 => There are Team Red and Team Blue, each ones teamcounts=1 player counts:5
What is difference between to create teams (red and blue) and the TeamCount rules?
Thanks a lot.