summaryrefslogtreecommitdiff
path: root/include/move.h
blob: 9f61775f52383abed8e466486f56c535536aa81a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _MOVE
#define _MOVE

#include "types.h"

/*
 * Initialize a Move
 */
Move move_init(Coord, Coord);

/*
 * Returns 1 if Move is a valid chess movement.
 */
int move_is_valid(Move);

#endif
nihil fit ex nihilo