From 43d8d9b5de8f269643c380d8d6c6c65d9224ad4a Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Thu, 21 Sep 2017 23:52:57 +0000 Subject: Rebuilding documentation --- yage/base/texturecache.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 yage/base/texturecache.h (limited to 'yage/base/texturecache.h') diff --git a/yage/base/texturecache.h b/yage/base/texturecache.h deleted file mode 100644 index 414c9ec3..00000000 --- a/yage/base/texturecache.h +++ /dev/null @@ -1,32 +0,0 @@ -/* ---------------------------------------------------------------------------- - * texturecache.h - * - * Copyright (c) 2017 Yann Herklotz Grave -- MIT License - * See file LICENSE for more details - * ---------------------------------------------------------------------------- - */ - -#ifndef TEXTURE_CACHE_H -#define TEXTURE_CACHE_H - -#include "texture.h" - -#include - -namespace yage -{ - -class TextureCache -{ -private: - std::unordered_map texture_map_; - -public: - TextureCache(); - - Texture getTexture(const std::string &texture_path); -}; - -} // namespace yage - -#endif -- cgit