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