mirror of https://github.com/PrimeDecomp/prime.git
15 lines
151 B
C++
15 lines
151 B
C++
|
#ifndef __CCOLOR_HPP__
|
||
|
#define __CCOLOR_HPP__
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class CColor {
|
||
|
public:
|
||
|
u8 r;
|
||
|
u8 g;
|
||
|
u8 b;
|
||
|
u8 a;
|
||
|
};
|
||
|
|
||
|
#endif // __CCOLOR_HPP__
|