aboutsummaryrefslogtreecommitdiffstats
path: root/include/texture.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-02-25 18:47:55 -0500
committerClyne Sullivan <tullivan99@gmail.com>2019-02-25 18:47:55 -0500
commitd7bae41fab5570bdac547a46463974adb4723f96 (patch)
tree37b0567300f2e3d0a74ceae5861272f4ff970558 /include/texture.hpp
parent58774909a78f06b8de3cb60e2f010e8ceccbf3a6 (diff)
mem leak patches; world ground from image
Diffstat (limited to 'include/texture.hpp')
-rw-r--r--include/texture.hpp15
1 files changed, 15 insertions, 0 deletions
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<bool> 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_