Nimbin2git.christianimmanuel.de / Games / Entropie / color.h

Entropie git · main

git clone https://git.christianimmanuel.de/games/Entropie.gitwget https://git.christianimmanuel.de/games/Entropie/archive/Entropie.tar.gz
color.h 151 B · 11 lines raw
#ifndef COLOR_H
#define COLOR_H

typedef struct {
    unsigned char r;
    unsigned char g;
    unsigned char b;
    unsigned char a;
} Color;

#endif