Definition at line 9 of file Color.h.
Public Member Functions | |
Color (Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha=255) |
|
Definition at line 11 of file Color.h. 00012 { 00013 this->r = red; 00014 this->g = green; 00015 this->b = blue; 00016 this->unused = alpha; 00017 }
|