axui-growth-chamber/test/main.c

19 lines
316 B
C

#include <stdio.h>
#include "../src/ax.h"
// #include "../src/ctxt.h"
int main(void)
{
struct ax_ctxt* ax = ax_new();
ax_begin_theme(ax);
ax_set_theme_color(ax, "default", 0x112233);
struct ax_theme* thm;
ax_end_theme(ax, &thm);
ax_select_theme(ax, thm);
ax_free(ax);
return 0;
}