aboutsummaryrefslogtreecommitdiff
path: root/sway/movement.h
blob: 44e630ffe80b4b8d4ca335b725dfa0c7d467c69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
};

int move_focus(enum movement_direction direction);

#endif