mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
bugfix
This commit is contained in:
+4
-1
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user