sfml 0.20.0

Rust binding for sfml
Documentation
#ifndef SFML_VECTOR2_H
#define SFML_VECTOR2_H

typedef struct
{
    int x;
    int y;
} sfVector2i;

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

typedef struct
{
    float x;
    float y;
} sfVector2f;

#endif // SFML_VECTOR2_H