aboutsummaryrefslogtreecommitdiff
path: root/include/saffron_button.h
blob: 3112edf6204e2df78634e390cdfe8cf3e644f1d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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