aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/decoration.h
blob: c77c04c77fc72583e638aec2f561bf373740ae91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _SWAY_DECORATION_H
#define _SWAY_DECORATION_H

#include <wlr/types/wlr_server_decoration.h>

struct sway_server_decoration {
	struct wlr_server_decoration *wlr_server_decoration;

	struct wl_listener destroy;
	struct wl_listener mode;
};

#endif