sfml 0.25.1

Rust binding for sfml
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef SFML_RECT_H
#define SFML_RECT_H

struct sfFloatRect {
    float left;
    float top;
    float width;
    float height;
};

struct sfIntRect {
    int left;
    int top;
    int width;
    int height;
};

#endif // SFML_RECT_H