13 lines
227 B
Plaintext
13 lines
227 B
Plaintext
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "file.cuh"
|
||
|
#include "game.cuh"
|
||
|
|
||
|
#ifndef CREATE_GRID_H
|
||
|
#define CREATE_GRID_H
|
||
|
|
||
|
void print_grid(struct GAME* game);
|
||
|
void create_grid(int argc, char** argv);
|
||
|
|
||
|
#endif // CREATE_GRID_H
|