12 lines
210 B
Plaintext
12 lines
210 B
Plaintext
#include "game.cuh"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#ifndef FILE_H
|
|
#define FILE_H
|
|
|
|
void read_in(char* filename, struct GAME* game);
|
|
void write_out(char* filename, struct GAME* game);
|
|
|
|
#endif //FILE_H
|