2018-01-18 15:44:34 +01:00
|
|
|
#ifndef __Settings__
|
|
|
|
|
|
|
|
#define __Settings__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include <SDL2/SDL_image.h>
|
2018-01-18 15:59:24 +01:00
|
|
|
#include <stdbool.h>
|
2018-01-18 15:44:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
void Settings_Initialize (SDL_Renderer* renderer);
|
|
|
|
|
|
|
|
void Settings_Draw (SDL_Renderer* renderer);
|
|
|
|
|
2018-01-18 15:59:24 +01:00
|
|
|
void Settings_Deinitialize();
|
|
|
|
|
2018-01-18 15:44:34 +01:00
|
|
|
#endif
|