blob: 19cc6e50a3a7d391139b6eaa223ee7c88c5de2ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <SDL3/SDL.h>
#include <stddef.h>
#include <stdint.h>
typedef struct {
SDL_Rect rect;
SDL_Color color;
} DrawElement;
typedef struct {
int len;
DrawElement els[256];
} DrawList;
|