RatChess/headers/moves.h
2025-06-19 03:49:48 -04:00

8 lines
168 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);
#endif