#pragma once #include #include #include "resource.hpp" #include "../pragmautil.hpp" namespace hibis { TODO("Make this function") class Texture : Resource { public: Texture(char* path); ~Texture(); std::vector mData; unsigned int mImageWidth, mImageHeight; private: std::vector mBuffer; }; }