blob: 1b1c62dcd42aa4a778e2cfb037828cd3288d2c91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef WIDGET_H
#define WIDGET_H
#include "GL/glew.h"
#include "../renderer/renderer_types.h"
typedef struct
{
int x, y, w, h;
Texture *texture;
} widget_t;
#endif // WIDGET_H
|