aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/util
diff options
context:
space:
mode:
Diffstat (limited to 'include/wlr/util')
-rw-r--r--include/wlr/util/direction.h11
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