sfml 0.25.1

Rust binding for sfml
Documentation
#ifndef SFML_VECTOR2_H
#define SFML_VECTOR2_H

struct sfVector2i {
    int x;
    int y;
};

struct sfVector2u {
    unsigned int x;
    unsigned int y;
};

struct sfVector2f {
    float x;
    float y;
};

#endif // SFML_VECTOR2_H