2048-homework/src/gui.h

14 lines
175 B
C

#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