mirror of
https://github.com/edubart/otclient.git
synced 2025-10-19 14:03:26 +02:00
creatures, fixe
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
#include "color.h"
|
||||
|
||||
Color Color::white(0xFF, 0xFF, 0xFF, 0xFF);
|
||||
Color Color::black(0x00, 0x00, 0x00, 0xFF);
|
||||
Color Color::alpha(0x00, 0x00, 0x00, 0x00);
|
||||
Color Color::red (0xFF, 0x00, 0x00, 0xFF);
|
||||
Color Color::green(0x00, 0xFF, 0x00, 0xFF);
|
||||
Color Color::blue (0x00, 0x00, 0xFF, 0xFF);
|
||||
Color Color::pink (0xFF, 0x00, 0xFF, 0xFF);
|
||||
Color Color::white (0xFF, 0xFF, 0xFF, 0xFF);
|
||||
Color Color::black (0x00, 0x00, 0x00, 0xFF);
|
||||
Color Color::alpha (0x00, 0x00, 0x00, 0x00);
|
||||
Color Color::red (0xFF, 0x00, 0x00, 0xFF);
|
||||
Color Color::green (0x00, 0xFF, 0x00, 0xFF);
|
||||
Color Color::blue (0x00, 0x00, 0xFF, 0xFF);
|
||||
Color Color::pink (0xFF, 0x00, 0xFF, 0xFF);
|
||||
Color Color::yellow (0x00, 0xFF, 0xFF, 0xFF);
|
||||
|
@@ -39,6 +39,7 @@ public:
|
||||
static Color green;
|
||||
static Color blue;
|
||||
static Color pink;
|
||||
static Color yellow;
|
||||
|
||||
private:
|
||||
RGBA color;
|
||||
|
Reference in New Issue
Block a user