Move gesture handling out of cursor.c

This commit is contained in:
Consolatis 2023-09-03 18:56:20 +02:00
parent 2d980cf404
commit 74760ae857
5 changed files with 109 additions and 70 deletions

10
include/input/gestures.h Normal file
View file

@ -0,0 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_GESTURES_H
#define LABWC_GESTURES_H
struct seat;
void gestures_init(struct seat *seat);
void gestures_finish(struct seat *seat);
#endif /* LABWC_GESTURES_H */