You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
434 B
15 lines
434 B
#ifndef MAIN_MENU_INCLUDED
|
|
#define MAIN_MENU_INCLUDED
|
|
|
|
#include <SDL2/SDL.h>
|
|
#include <string.h>
|
|
#include "engine/Button.h"
|
|
#include "engine/TextureLoader.h"
|
|
#include "engine/FontLoader.h"
|
|
|
|
P_Button* drawMainMenu(SDL_Renderer* renderer,const FontHandler fontHandler, unsigned int* nb, const SDL_Rect* windowSize);
|
|
|
|
int mainMenu(SDL_Renderer * renderer,SDL_Window * window, GeneralState * generalState,FontHandler fontHandler)
|
|
|
|
#endif
|