This commit is contained in:
devZoGok
2022-03-02 20:24:04 +02:00
parent 33b6961543
commit 109e426a35
4 changed files with 16 additions and 8 deletions
+4 -1
View File
@@ -5,12 +5,15 @@
namespace vb01{
struct ImageAsset : public Asset{
ImageAsset(std::string path, u8 *image){
ImageAsset(std::string path, u8 *image, int width, int height){
this->path = path;
this->image = image;
this->width = width;
this->height = height;
}
u8 *image;
int width, height;
};
}