1
0
Fork 0

Refactoring

This commit is contained in:
MrDev023 2016-10-07 14:06:50 +02:00
parent 1498f4e21e
commit 9b1b3a5c97
24 changed files with 124 additions and 13 deletions

11
src/render/image.cpp Normal file
View file

@ -0,0 +1,11 @@
#include "renderer.h"
Image::Image(unsigned char* data,int width,int height){
this->data = data;
this->width = width;
this->height = height;
}
Image::~Image(){
delete this->data;
}