summaryrefslogtreecommitdiff
path: root/src/input.c
diff options
context:
space:
mode:
authorepoch <epoch@thebackupbox.net>2020-04-12 23:57:34 -0500
committerepoch <epoch@thebackupbox.net>2020-04-12 23:57:34 -0500
commitebc7381301c06c31933d11ff3e2b68ca005aa3e7 (patch)
tree52b8db2971de6e8e92ae809be8a5ca4f0b5831a2 /src/input.c
parent7c35a4ed6ec9ebb800c35872d83c105ac90b7891 (diff)
downloadhackvr-ebc7381301c06c31933d11ff3e2b68ca005aa3e7.tar.gz
hackvr-ebc7381301c06c31933d11ff3e2b68ca005aa3e7.zip
noticed I don't need input.o in the makefile anymore
Diffstat (limited to 'src/input.c')
-rw-r--r--src/input.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/input.c b/src/input.c
deleted file mode 100644
index 8c1b99b..0000000
--- a/src/input.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <idc.h>
-#include "common.h"
-#include "graphics_x11.h"
-#include "keyboard_x11.h"
-#include "mouse_x11.h"
-#include "input.h"
-
-extern struct x11_global x11_global;
-
-int input_init() {
- return x11_global.fd;
-}
-
-void input_event_handler(struct shit *me,char *line) {
- if(keyboard_event_handler(me,line)) {
- }
- if(mouse_event_handler(me,line)) {
- }
-}