aboutsummaryrefslogtreecommitdiff
path: root/include/saffron_button.h
blob: ab4ed97cb038f9dbf727238ad2cf0aaa98eb7c5c (plain)
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