summaryrefslogtreecommitdiff
path: root/src/rototiller.h
blob: 77113de0b02f72537206f083bb5733c2a34cd4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _ROTOTILLER_H
#define _ROTOTILLER_H

typedef struct rototiller_module_t {
	void	(*render_fragment)(fb_fragment_t *);
	char	*name;
	char	*description;
	char	*author;
	char	*license;
} rototiller_module_t;

#endif
© All Rights Reserved