aboutsummaryrefslogtreecommitdiff
path: root/mwe/resource-manager/map_layer.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 21:54:28 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 21:54:28 +0200
commit9b7be419c9dcc6ebd1e504713c7b2676ca3d2fdf (patch)
tree97a2fc5ce1ec1345bd6f44889682ea9a2ffafd76 /mwe/resource-manager/map_layer.h
parent080ad535e6fc6666b919b1a21b6986aaf9b678eb (diff)
`clang-format`
Diffstat (limited to 'mwe/resource-manager/map_layer.h')
-rw-r--r--mwe/resource-manager/map_layer.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/mwe/resource-manager/map_layer.h b/mwe/resource-manager/map_layer.h
index e633290..fb656ed 100644
--- a/mwe/resource-manager/map_layer.h
+++ b/mwe/resource-manager/map_layer.h
@@ -1,26 +1,23 @@
#pragma once
-
#include "TextureMap.h"
#include <SDL_render.h>
#include <tmxlite/Map.hpp>
-class MapLayer final{
+class MapLayer final {
public:
explicit MapLayer();
~MapLayer();
- bool create(const tmx::Map&, std::uint32_t index, const std::vector<TextureMap*>& textures);
- void draw(SDL_Renderer*) const;
+ bool create(const tmx::Map &, std::uint32_t index,
+ const std::vector<TextureMap *> & textures);
+ void draw(SDL_Renderer *) const;
private:
-
- struct subset final
- {
- std::vector<SDL_Vertex> vertexData;
- SDL_Texture* texture = nullptr;
- };
- std::vector<subset> m_subsets;
-
+ struct subset final {
+ std::vector<SDL_Vertex> vertexData;
+ SDL_Texture * texture = nullptr;
+ };
+ std::vector<subset> m_subsets;
};