mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
12 lines
181 B
C
12 lines
181 B
C
|
#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
|