aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/je_color.cpp
blob: da48162355c28d6b926edbd30ec4bfcbfaef033f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "je_color.h"

namespace JinEngine
{
	namespace Graphics
	{

		const Color Color::WHITE = Color(255, 255, 255);
		const Color Color::BLACK = Color(0, 0, 0);
		const Color Color::RED = Color(255, 0, 0);
		const Color Color::GREEN = Color(0, 255, 0);
		const Color Color::BLUE = Color(0, 0, 255);
		const Color Color::MAGENTA = Color(255, 0, 255);
		const Color Color::YELLOW = Color(255, 255, 0);

	}
}