mirror of
https://github.com/swaywm/sway.git
synced 2025-11-06 13:29:50 -05:00
Move headers to include/
This commit is contained in:
parent
360b3d67b0
commit
7f8ebb7d0d
12 changed files with 1 additions and 1 deletions
17
include/movement.h
Normal file
17
include/movement.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#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,
|
||||
MOVE_PARENT
|
||||
};
|
||||
|
||||
bool move_focus(enum movement_direction direction);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue