Files
cli-chess/graphics.h
2023-03-22 20:35:43 +01:00

9 lines
118 B
C

#ifndef GRAPHICS_H
#define GRAPHICS_H
#include "common.h"
void print_board(const tile_t board[BOARD_SIZE]);
#endif