You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
181 B
13 lines
181 B
7 years ago
|
#ifndef WLR_UTIL_EDGES_H
|
||
|
#define WLR_UTIL_EDGES_H
|
||
|
|
||
|
enum wlr_edges {
|
||
|
WLR_EDGE_NONE = 0,
|
||
|
WLR_EDGE_TOP = 1,
|
||
|
WLR_EDGE_BOTTOM = 2,
|
||
|
WLR_EDGE_LEFT = 4,
|
||
|
WLR_EDGE_RIGHT = 8,
|
||
|
};
|
||
|
|
||
|
#endif
|