1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef SFML_COLOR_H #define SFML_COLOR_H #include <cstdint> struct sfColor { uint8_t r; uint8_t g; uint8_t b; uint8_t a; }; #endif // SFML_COLOR_H