Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
game_of_life/include/main.h

15 lines
165 B
C
Raw Normal View History

2024-09-11 17:48:22 +00:00
#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