You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
362 B

#include "constants.h"
#include <utility>
using namespace std;
// Convert pair of x y coordinates to Position enum member.
// If pr contains values above 7, or below 0 it will fail with an InvalidArgument exception.
Position pair_to_pos(pair<int, int> pr);
// Convert a Position number into a pair of x y coordiinates
pair<int, int> pos_to_pair(Position pn);