mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Merge pull request #1077 from Areloch/NilsUI_Updates_NewColors
Adds some new named colors
This commit is contained in:
commit
3763ebba48
|
|
@ -38,6 +38,8 @@ const ColorI ColorI::BLACK( 0, 0, 0 );
|
|||
const ColorI ColorI::RED( 255, 0, 0 );
|
||||
const ColorI ColorI::GREEN( 0, 255, 0 );
|
||||
const ColorI ColorI::BLUE( 0, 0, 255 );
|
||||
const ColorI ColorI::DARK(24, 24, 24);
|
||||
const ColorI ColorI::LIGHT(120, 120, 120);
|
||||
|
||||
#include "console/console.h"
|
||||
#include "console/consoleTypes.h"
|
||||
|
|
|
|||
|
|
@ -196,6 +196,8 @@ public:
|
|||
static const ColorI RED;
|
||||
static const ColorI GREEN;
|
||||
static const ColorI BLUE;
|
||||
static const ColorI LIGHT;
|
||||
static const ColorI DARK;
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue