mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-11 15:39:07 +00:00
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__
|