Add db for backup and memory happiness

This commit is contained in:
jheaps
2025-07-05 18:48:30 -06:00
parent 7a532e52e1
commit 9003d2c4dd
27 changed files with 2682 additions and 245 deletions
@@ -7,5 +7,5 @@ public interface IChessService
GameState CreateNewGame();
List<(ChessPiece piece, List<Position> moves)> GetAllLegalMoves(GameState gameState);
List<Position> GetLegalMovesForPiece(GameState gameState, string pieceId);
MoveResultDto MakeMove(GameState gameState, MoveDto moveDto);
Task<MoveResultDto> MakeMove(GameState gameState, MoveDto moveDto);
}