diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-02-14 14:10:31 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-02-14 14:10:31 -0500 |
commit | 85871cb666a8adf8221b0b64049697a9d5ade686 (patch) | |
tree | e934f917a1399087c88b6fbaf1a59db5f17d358a /include/wlr/util | |
parent | 71cba94e73022d8cef8651055204a4706377ae11 (diff) |
add wlr_output_layout_adjacent_output
Diffstat (limited to 'include/wlr/util')
-rw-r--r-- | include/wlr/util/direction.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/wlr/util/direction.h b/include/wlr/util/direction.h new file mode 100644 index 00000000..b5f3a589 --- /dev/null +++ b/include/wlr/util/direction.h @@ -0,0 +1,11 @@ +#ifndef WLR_UTIL_DIRECTION_H +#define WLR_UTIL_DIRECTION_H + +enum wlr_direction { + WLR_DIRECTION_UP = 0, + WLR_DIRECTION_DOWN = 1, + WLR_DIRECTION_LEFT = 2, + WLR_DIRECTION_RIGHT = 4, +}; + +#endif |