sfml 0.20.0

Rust binding for sfml
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SFML_COLOR_H
#define SFML_COLOR_H

#include <cstdint>

typedef struct
{
    uint8_t r;
    uint8_t g;
    uint8_t b;
    uint8_t a;
} sfColor;

#endif // SFML_COLOR_H