From d7bae41fab5570bdac547a46463974adb4723f96 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 25 Feb 2019 18:47:55 -0500 Subject: mem leak patches; world ground from image --- include/texture.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'include/texture.hpp') diff --git a/include/texture.hpp b/include/texture.hpp index d4bcfa9..db16357 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -174,4 +174,19 @@ public: */ void unloadTextures(void); +class ObjectTexture : public Texture { +private: + std::vector solidMap; + bool valid; + +public: + ObjectTexture(const std::string filename = ""); + + int getHeight(int index); + bool isInsideObject(vec2 coord) const; + inline bool isValid(void) { + return valid; + } +}; + #endif //TEXTURE_HPP_ -- cgit v1.2.3