aboutsummaryrefslogtreecommitdiff
path: root/include/mgl/graphics/color.h
blob: 68cc0c10f81b06cb068c07d4a3189027c213f7d1 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef MGL_COLOR_H
#define MGL_COLOR_H

#include <stdint.h>

typedef struct {
    uint8_t r, g, b, a;
} mgl_color;

#endif /* MGL_COLOR_H */