aboutsummaryrefslogtreecommitdiff
#include "widget.h"
#include <stdlib.h>

widget_t *Widget_CreateImage(Texture *texture, int x, int y, int w, int h)
{
    return NULL;
}

void Widget_Destroy(widget_t *widget)
{
    free(widget);
}