Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Pages
libs
common
ColorTypes.h
Go to the documentation of this file.
1
#ifndef COLOR_TYPES_H
2
#define COLOR_TYPES_H
3
13
namespace
qrk
14
{
18
class
Color
{
19
public
:
20
float
r
;
21
float
g
;
22
float
b
;
23
float
a
;
24
25
34
Color
(
float
r_,
float
g_,
float
b_,
float
a_ = 1.0f)
35
:
r
(r_),
g
(g_),
b
(b_),
a
(a_)
36
{
37
}
38
};
39
}
40
41
#endif
/* !COLOR_TYPES_H */
Generated on Tue Oct 30 2012 14:20:25 by
1.8.2-20120930