summaryrefslogtreecommitdiff
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 @@
+#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