struct Object {
    int x;
    int y;
    int sx;
    int sy;
    int width;
    int height;
};

void SetObjectSize(struct Object *o, int w, int h) {
    o->width = w;
    o->height = h;
}
