diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 14:59:34 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 14:59:34 +0100 |
commit | e2c27d8c99a71e5d94ffe49027ec13afeb74b021 (patch) | |
tree | 4bed8f7654c112e84bae6f8cce2ca2b2abe94cb4 /src/crepe/system/RenderSystem.h | |
parent | c52742e049e68d5ad0beabf8647f543bc2497596 (diff) |
replace more vector<reference_wrapper<T>> with RefVector
Diffstat (limited to 'src/crepe/system/RenderSystem.h')
-rw-r--r-- | src/crepe/system/RenderSystem.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/system/RenderSystem.h b/src/crepe/system/RenderSystem.h index 57b9c73..40978ae 100644 --- a/src/crepe/system/RenderSystem.h +++ b/src/crepe/system/RenderSystem.h @@ -47,8 +47,7 @@ private: * \param objs the vector that will do a sorting algorithm on * \return returns a sorted reference vector */ - std::vector<std::reference_wrapper<Sprite>> - sort(std::vector<std::reference_wrapper<Sprite>> & objs); + RefVector<Sprite> sort(RefVector<Sprite> & objs); /** * \todo Include color handling for sprites. |