Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include <time.h> // Used for random generation being based off time
#include <random> // Used for random generation of board
#include <windows.h> // Used for text colour found from https://www.daniweb.com/programming/software-development/code/216345/add-a-little-color-to-your-console-text
class Board
{
public:
char board[8][8]; // Generates array which is the core of the board
int spawn;
void board_creation();
void board_output();
};