Cube-World-Commands-Mod/cwmods/common/ByteRGBA.cpp

9 lines
192 B
C++
Raw Normal View History

2019-09-23 07:50:21 +08:00
#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;
}