Implement Knight

This commit is contained in:
2025-02-22 15:39:49 +01:00
parent 7cc7fa3e70
commit eda2ec6c93
3 changed files with 46 additions and 3 deletions

View File

@@ -4,8 +4,10 @@ import subprocess
import flask
from flask_cors import CORS
PIECE_TYPE = [("P", "pawn")]
PIECE_TYPE = [
("P", "pawn"),
("N", "knight"),
]
COLOR = [
("W", "white"),
("B", "black"),