blob: 507173a53df108e3ad1d6d40e1ca49c65d2b981e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
}
|