Implementing configuration file
This commit is contained in:
parent
3dbae3ef3b
commit
84763356da
1 changed files with 0 additions and 10 deletions
|
@ -31,17 +31,7 @@ int cols;
|
|||
// Config settings.
|
||||
config_t configuration;
|
||||
config_setting_t * cfg_setting;
|
||||
|
||||
// unsigned testM[4][4] = {
|
||||
// {0, 0, 0, 0},
|
||||
// {0, 0, 0, 0},
|
||||
// {0, 0, 0, 0},
|
||||
// {0, 0, 0, 0},
|
||||
// };
|
||||
|
||||
unsigned ** testM;
|
||||
// The number will represent the death time, when it reaches 0, the cell
|
||||
// becomes a death wall.
|
||||
|
||||
void make_visited_cell(unsigned * x) { *x |= VISITED_MASK; }
|
||||
void unmake_visited_cell(unsigned * x) { *x &= ~VISITED_MASK; }
|
||||
|
|
Loading…
Reference in a new issue