19 lines
250 B
C
19 lines
250 B
C
#ifndef ARC_GRAPHICS_COLOR_H_
|
|
#define ARC_GRAPHICS_COLOR_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct ARC_Color {
|
|
uint8_t r, g, b, a;
|
|
} ARC_Color;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !ARC_GRAPHICS_COLOR_H_
|