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

9 lines
199 B
C++
Raw Normal View History

2019-09-23 07:50:21 +08:00
#include "FloatRGBA.h"
FloatRGBA::FloatRGBA(float red, float green, float blue, float alpha){
this->red = red;
this->green = green;
this->blue = blue;
this->alpha = alpha;
}