18 lines
305 B
C++
18 lines
305 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#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;
|
|
};
|
|
}
|