1 2 3 4 5 6 7 8 9 10 11 12 13
#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