#pragma once #define GLEW_STATIC #include #include "rwbinarystream.h" #include #include class TextureLoader { public: bool loadFromFile(std::string filename); bool loadFromMemory(char *data); void bindTexture(std::string texture); std::map textures; };