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.
projet-tut/Pontu/include/view/GameDrawer.h

14 lines
321 B

#ifndef GAME_DRAWER_INCLUDED
#define GAME_DRAWER_INCLUDED
#include <SDL2/SDL.h>
#include "model/Game.h"
#include "engine/TextureHandler.h"
#include "engine/Button.h"
bool drawGame(SDL_Renderer* renderer, const SDL_Rect* windowSize, const SDL_Rect* boardRect, const Game* game,TextureHandler* textureHandler);
#endif