aboutsummaryrefslogtreecommitdiffstats
path: root/include/movement.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/movement.h')
-rw-r--r--include/movement.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/movement.h b/include/movement.h
new file mode 100644
index 00000000..dd701877
--- /dev/null
+++ b/include/movement.h
@@ -0,0 +1,17 @@
1#ifndef _SWAY_MOVEMENT_H
2#define _SWAY_MOVEMENT_H
3
4#include <wlc/wlc.h>
5#include "list.h"
6
7enum movement_direction {
8 MOVE_LEFT,
9 MOVE_RIGHT,
10 MOVE_UP,
11 MOVE_DOWN,
12 MOVE_PARENT
13};
14
15bool move_focus(enum movement_direction direction);
16
17#endif