From fa99aa2d53eb1f784b6e7bb4971cf36092488957 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 10 Aug 2026 15:04:37 +0200 Subject: making fen parser be self contained --- src/board/board.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/board/board.cpp') diff --git a/src/board/board.cpp b/src/board/board.cpp index 676a7de..c02aac5 100644 --- a/src/board/board.cpp +++ b/src/board/board.cpp @@ -324,6 +324,3 @@ void UpdateHelpers(Game *g) { } g->PieceBitboard = g->WhitePieceBitboard | g->BlackPieceBitboard; } -void SetPiece(int i, PieceType type, bool color, Game *g) { - g->pieces[i] = {.color = color, .type = type}; -} -- cgit v1.2.3