#ifndef SAFFRON_BUTTON_H #define SAFFRON_BUTTON_H #include "saffron_widget.h" typedef struct { SaffronWidget base; // must be first, or we're f**ked const char* label; } SaffronButton; #endif