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