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