From cbecbe5c10d9981012341553c865a52d732df7d5 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Fri, 13 Dec 2024 22:52:35 -0600 Subject: Pain Signed-off-by: Matt Strapp --- wwb/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wwb/src/lib.rs b/wwb/src/lib.rs index 7815efc..59ab677 100644 --- a/wwb/src/lib.rs +++ b/wwb/src/lib.rs @@ -2,6 +2,8 @@ use bincode::{Decode, Encode}; /// WWB is a 2-player game at heart. Hardcode 2 players only so no one else has to suffer pub const PLAYER_COUNT: usize = 2; +/// By default, the game board is 100 cards, not including the start and finish spaces. +/// An alternative rule would be to set this to be 1000, but since the game has never been finished at 100, it's not worth it. pub const BOARD_SIZE: u16 = 100; #[derive(Encode, Decode, Debug, Default, PartialEq)] -- cgit v1.2.3