summaryrefslogtreecommitdiff
path: root/Runtime/Graphics/Color.h
blob: 461e7afe858fe2d200d243fb713612f973a8d8b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef COLOR_H
#define COLOR_H

#include "../Utilities/Type.h"

class ColorRGBAf
{
public:
	float	r, g, b, a;

};

class ColorRGBA32
{
public:
	uint8 r, g, b, a;

};

using Color = ColorRGBAf;

#endif