Files
cli-chess/include/pieces.h
Ole Morud 60942dcfd2 Refactor
2023-03-22 21:45:29 +01:00

13 lines
201 B
C

#ifndef PIECES_H
#define PIECES_H
#include "common.h"
bool move_ok(const tile_t board[BOARD_SIZE],
index_t from,
index_t to,
int player);
#endif