mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-06 05:50:31 +00:00
From Nils' UI Update work. Adds some new named colors
This commit is contained in:
parent
a445a43646
commit
3451c11393
2 changed files with 4 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue