aboutsummaryrefslogtreecommitdiffstats
path: root/include/texture.hpp
diff options
context:
space:
mode:
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_