9 lines
192 B
C++
9 lines
192 B
C++
|
#include "ByteRGBA.h"
|
||
|
|
||
|
ByteRGBA::ByteRGBA(char red, char green, char blue, char alpha){
|
||
|
this->red = red;
|
||
|
this->green = green;
|
||
|
this->blue = blue;
|
||
|
this->alpha = alpha;
|
||
|
}
|