mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 03:51:47 +01:00
18 lines
479 B
C++
18 lines
479 B
C++
|
|
#include "structs.h"
|
|
|
|
namespace Colors
|
|
{
|
|
const Color4f WHITE{ 1.0f, 1.0f, 1.0f, 1.0f };
|
|
const Color4f BLACK{ 0.0f, 0.0f, 0.0f, 1.0f };
|
|
|
|
const Color4f RED{ 1.0f, 0.0f, 0.0f, 1.0f };
|
|
const Color4f GREEN{ 0.0f, 1.0f, 0.0f, 1.0f };
|
|
const Color4f BLUE{ 0.0f, 0.0f, 1.0f, 1.0f };
|
|
|
|
const Color4f YELLOW{ 1.0f, 1.0f, 0.0f, 1.0f };
|
|
const Color4f MAGENTA{ 1.0f, 0.0f, 1.0f, 1.0f };
|
|
const Color4f CYAN{ 0.0f, 1.0f, 1.0f, 1.0f };
|
|
const Color4f PINK{ 1.0f, 0.0f, 0.5f, 1.0f };
|
|
}
|