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.
13 lines
406 B
13 lines
406 B
#ifndef GAME_MAIN_INCLUDED
|
|
#define GAME_MAIN_INCLUDED
|
|
|
|
#include "engine/GeneralState.h"
|
|
#include <SDL2/SDL.h>
|
|
#include "model/Player.h"
|
|
#include "engine/FontLoader.h"
|
|
#include "engine/AudioHandler.h"
|
|
|
|
void gameView(GeneralState* generalState, SDL_Window* window, SDL_Renderer* renderer, Player players[], size_t nbPlayers, FontHandler* fontHandler, AudioHandler audioHandler);
|
|
|
|
#endif //GAME_MAIN_INCLUDED
|