14 lines
165 B
C
14 lines
165 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <SDL.h>
|
|
|
|
// Public
|
|
void quit_application(int exit_code);
|
|
|
|
extern SDL_Window *window;
|
|
|
|
// Private
|
|
static void init();
|
|
|
|
#endif
|