aboutsummaryrefslogtreecommitdiff
path: root/sway/movement.h
diff options
context:
space:
mode:
Diffstat (limited to 'sway/movement.h')
-rw-r--r--sway/movement.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/sway/movement.h b/sway/movement.h
new file mode 100644
index 00000000..c88b44bd
--- /dev/null
+++ b/sway/movement.h
@@ -0,0 +1,16 @@
+#ifndef _SWAY_MOVEMENT_H
+#define _SWAY_MOVEMENT_H
+
+#include <wlc/wlc.h>
+#include "list.h"
+
+enum movement_direction{
+ MOVE_LEFT,
+ MOVE_RIGHT,
+ MOVE_UP,
+ MOVE_DOWN
+};
+
+void move_focus(enum movement_direction direction);
+
+#endif