9 lines
199 B
C++
9 lines
199 B
C++
|
#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;
|
||
|
}
|