hasty bugfix and moved board functions to own directory

This commit is contained in:
2024-12-15 12:07:25 +02:00
parent 66238756d6
commit be6dfe712c
6 changed files with 81 additions and 15 deletions

11
src/board/board.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef BOARD_H_
#define BOARD_H_
#include "../globals.h"
extern boardInfo brdInfo;
void setBoardBorders(char board[][brdInfo.x]);
void printBoard(char board[][brdInfo.x]);
#endif