protomine/include/game.h

12 lines
173 B
C

#pragma once
#include "grid.h"
#include "player.h"
struct Game {
struct Grid floor;
struct Player player;
};
struct Game game_init(void);
void game_deinit(struct Game);