diff options
Diffstat (limited to 'include/texture.hpp')
-rw-r--r-- | include/texture.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/texture.hpp b/include/texture.hpp index fb4e588..25f73a5 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -41,9 +41,12 @@ public: * @param file the path to the desired texture * @param t the GLuint for the texture, if known * @param v the size of the texture, if known + * @param hline if true, divides texture dim. by HLINE */ Texture(const std::string& file = "", const GLuint& t = 0xFFFFF, const vec2& v = vec2(0, 0)); + Texture(const std::string& file, bool hline); + /** * Gets the name (path) of the loaded texture. * @return the texture's name |