Add note about validations

This commit is contained in:
Nemo 2018-01-28 03:37:08 +05:30
parent 9d17bf6b04
commit a9f965dbaa
1 changed files with 3 additions and 1 deletions

View File

@ -8,4 +8,6 @@ If you can serialize a board game, you can do cool stuff:
2. Record games played over time
3. Learn patterns from previous games
This tries not to introduce players into the state itself, instead use markers to keep track of where everything is. Built using Cap'n Proto. The game rules themselves are not part of this.
This tries not to introduce players into the state itself, instead use markers to keep track of where everything is. Built using Cap'n Proto. The game rules themselves are not part of this, and game validations are optional.
For eg, having a chess serialization that allows for 2 kings is _okay_, since the game's logic would never allow it to reach such a state.