RatChess/headers/moves.h
2025-06-18 12:38:00 -04:00

7 lines
132 B
C

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