X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FTextureIndex.hpp;fp=src%2Fapp%2FTextureIndex.hpp;h=0000000000000000000000000000000000000000;hb=9c5308ba4108bd842af6d9d2e893ea575a7e6ca8;hp=8c6e22f40f8ad87daba1bcad48784657d1953cc7;hpb=4e3afb4c7631591b80cb7740a9b6f46da69b7ae4;p=blank.git diff --git a/src/app/TextureIndex.hpp b/src/app/TextureIndex.hpp deleted file mode 100644 index 8c6e22f..0000000 --- a/src/app/TextureIndex.hpp +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef BLANK_APP_TEXTUREINDEX_HPP_ -#define BLANK_APP_TEXTUREINDEX_HPP_ - -#include -#include - - -namespace blank { - -class TextureIndex { - - using MapType = std::map; - -public: - TextureIndex(); - - int GetID(const std::string &); - - std::size_t Size() const noexcept { return id_map.size(); } - const MapType &Entries() const noexcept { return id_map; } - -private: - MapType id_map; - -}; - -}; - -#endif