2048-homework/src/gui.h

14 lines
175 B
C
Raw Normal View History

2021-12-05 14:31:33 +00:00
#include <SDL.h>
#include "2048.h"
#ifndef HEADER_GUI
#define HEADER_GUI
typedef struct GUI {
} GUI;
void gui_init();
void gui_destroy();
void gui_loop(Game *game);
#endif