aboutsummaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
Diffstat (limited to 'src/input')
-rw-r--r--src/input/event.cpp7
-rw-r--r--src/input/event.h13
-rw-r--r--src/input/keyboard.cpp0
-rw-r--r--src/input/keyboard.h13
-rw-r--r--src/input/mouse.cpp0
-rw-r--r--src/input/mouse.h30
6 files changed, 0 insertions, 63 deletions
diff --git a/src/input/event.cpp b/src/input/event.cpp
deleted file mode 100644
index 8eb45e6..0000000
--- a/src/input/event.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-#include "event.h"
-#include "SDL2\SDL.h"
-
-namespace jin
-{
-
-} \ No newline at end of file
diff --git a/src/input/event.h b/src/input/event.h
deleted file mode 100644
index e09f422..0000000
--- a/src/input/event.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef __JIN_EVENT_H
-#define __JIN_EVENT_H
-namespace jin
-{
-namespace input
-{
-
-
-
-}
-}
-
-#endif \ No newline at end of file
diff --git a/src/input/keyboard.cpp b/src/input/keyboard.cpp
deleted file mode 100644
index e69de29..0000000
--- a/src/input/keyboard.cpp
+++ /dev/null
diff --git a/src/input/keyboard.h b/src/input/keyboard.h
deleted file mode 100644
index bbb6456..0000000
--- a/src/input/keyboard.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef __JIN_KEYBOARD_H
-#define __JIN_KEYBOARD_H
-namespace jin
-{
-namespace input
-{
- class Keyboard
- {
-
- };
-}
-}
-#endif \ No newline at end of file
diff --git a/src/input/mouse.cpp b/src/input/mouse.cpp
deleted file mode 100644
index e69de29..0000000
--- a/src/input/mouse.cpp
+++ /dev/null
diff --git a/src/input/mouse.h b/src/input/mouse.h
deleted file mode 100644
index 55e3346..0000000
--- a/src/input/mouse.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __JIN_MOUSE_H
-#define __JIN_MOUSE_H
-namespace jin
-{
-namespace input
-{
- class Mouse
- {
- public:
-
- };
-
- inline const char* buttonStr(int id) {
- switch (id) {
- case 1: return "left";
- case 2: return "middle";
- case 3: return "right";
- case 4: return "wheelup";
- case 5: return "wheeldown";
- default: return "?";
- }
- }
-
- inline const char* wheelStr(int dir)
- {
-
- }
-}
-}
-#endif \ No newline at end of file