2021-04-25 22:42:55 +02:00
|
|
|
#ifndef MAPLOADER_H
|
|
|
|
|
#define MAPLOADER_H
|
|
|
|
|
|
|
|
|
|
#include "../sdlpp/sdlpp_scene.hpp"
|
|
|
|
|
#include "../sdlpp/sdlpp_rectrenderer.hpp"
|
|
|
|
|
|
2021-04-30 09:10:58 +02:00
|
|
|
void loadMap(std::shared_ptr<SDLPP::Scene> &scene, std::shared_ptr<SDLPP::RectangleRender> mario, const std::string &file, std::shared_ptr<SDLPP::Renderer> &renderer);
|
2021-04-25 22:42:55 +02:00
|
|
|
|
|
|
|
|
#endif
|