summaryrefslogtreecommitdiffstats
path: root/include/sway/surface.h
blob: 06874af2de1419d7102961783e5990975e19248f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SWAY_SURFACE_H
#define _SWAY_SURFACE_H
#include <wlr/types/wlr_surface.h>

struct sway_surface {
	struct wlr_surface *wlr_surface;

	struct wl_listener destroy;
};

#endif