#ifndef SAFFRON_BUTTON_H #define SAFFRON_BUTTON_H #include "saffron_layout.h" #include "saffron_widget.h" typedef struct SaffronButton { SaffronBox base; void (*callback)(struct SaffronButton* self); bool enabled; } SaffronButton; #endif