13 lines
207 B
C++
13 lines
207 B
C++
|
#include "CanvasPortion.h"
|
||
|
|
||
|
CanvasPortion::CanvasPortion()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void CanvasPortion::setSize(int width, int height)
|
||
|
{
|
||
|
this->width = width;
|
||
|
this->height = height;
|
||
|
// TODO Resize and clear pixels
|
||
|
}
|