RatChess/headers/moves.h
2025-06-19 04:00:17 -04:00

9 lines
206 B
C

#ifndef MOVES_H
#define MOVES_H
#include "types.h"
int pawnMove(game *g, move *moves);
int knightMove(game *g, move* moves);
int rookMove(game *g, move *moves);
int bishopMove(game *g, move *moves);
#endif