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