Entity

A free-floating entity

struct Entity {
string name;
string type;
int x;
int y;
int width;
int height;
int rotation;
bool flipX;
bool flipY;
Texture tex;
bool visible;
}

Meta