aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/surface.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/surface.h')
-rw-r--r--include/sway/surface.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/sway/surface.h b/include/sway/surface.h
new file mode 100644
index 00000000..06874af2
--- /dev/null
+++ b/include/sway/surface.h
@@ -0,0 +1,11 @@
1#ifndef _SWAY_SURFACE_H
2#define _SWAY_SURFACE_H
3#include <wlr/types/wlr_surface.h>
4
5struct sway_surface {
6 struct wlr_surface *wlr_surface;
7
8 struct wl_listener destroy;
9};
10
11#endif