diff options
Diffstat (limited to 'resource-manager/map_asset.h')
-rw-r--r-- | resource-manager/map_asset.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/resource-manager/map_asset.h b/resource-manager/map_asset.h new file mode 100644 index 0000000..39cb8f4 --- /dev/null +++ b/resource-manager/map_asset.h @@ -0,0 +1,35 @@ +#pragma once + + +#include "TextureMap.h" +#include "map_layer.h" +#include "resource.h" +#include <string> +#include <tmxlite/Map.hpp> +#include <vector> + + +class Map : public Resource { + +public: + Map(const std::string& path); + ~Map(); + + void SetRenderer(SDL_Renderer&); + void draw() const; + + +private: + void SetMapTextures(); + void SetMapLayers(); + + +private: + tmx::Map m_Map; + std::vector<TextureMap*> m_MapTextures; + std::vector<MapLayer*> m_RenderLayers; + + SDL_Renderer* m_Renderer; + + +}; |