WIP refactor

This commit is contained in:
Ole Morud
2023-03-22 20:35:43 +01:00
parent 39f9d848b5
commit f18c9215e5
11 changed files with 464 additions and 430 deletions

13
pieces.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef PIECES_H
#define PIECES_H
#include "common.h"
bool move_ok(const tile_t board[BOARD_SIZE],
index_t from,
index_t to,
const int player);
#endif