game class is now separate from db load and board organization. game initializes from a dictionary with the full game state.

This commit is contained in:
2023-05-01 15:19:06 -07:00
parent ce51e5c35c
commit 2f613d0dbb
11 changed files with 448 additions and 358 deletions

View File

@@ -0,0 +1,10 @@
DELIMITER //
CREATE PROCEDURE select_base2_citizens()
BEGIN
SELECT * FROM citizens WHERE expansion = "base2"
UNION
SELECT * FROM citizens WHERE expansion = "base1" AND name IN ('Peasant', 'Knight');
END //
DELIMITER ;