aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Input
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/Input')
-rw-r--r--src/libjin/Input/Event.cpp7
-rw-r--r--src/libjin/Input/Event.h13
-rw-r--r--src/libjin/Input/Input.h8
-rw-r--r--src/libjin/Input/Joypad.cpp0
-rw-r--r--src/libjin/Input/Joypad.h14
-rw-r--r--src/libjin/Input/Keyboard.cpp0
-rw-r--r--src/libjin/Input/Keyboard.h13
-rw-r--r--src/libjin/Input/Mouse.cpp0
-rw-r--r--src/libjin/Input/Mouse.h15
9 files changed, 70 insertions, 0 deletions
diff --git a/src/libjin/Input/Event.cpp b/src/libjin/Input/Event.cpp
new file mode 100644
index 0000000..8eb45e6
--- /dev/null
+++ b/src/libjin/Input/Event.cpp
@@ -0,0 +1,7 @@
+#include "event.h"
+#include "SDL2\SDL.h"
+
+namespace jin
+{
+
+} \ No newline at end of file
diff --git a/src/libjin/Input/Event.h b/src/libjin/Input/Event.h
new file mode 100644
index 0000000..e09f422
--- /dev/null
+++ b/src/libjin/Input/Event.h
@@ -0,0 +1,13 @@
+#ifndef __JIN_EVENT_H
+#define __JIN_EVENT_H
+namespace jin
+{
+namespace input
+{
+
+
+
+}
+}
+
+#endif \ No newline at end of file
diff --git a/src/libjin/Input/Input.h b/src/libjin/Input/Input.h
new file mode 100644
index 0000000..217edd2
--- /dev/null
+++ b/src/libjin/Input/Input.h
@@ -0,0 +1,8 @@
+#ifndef __JIN_INPUT_H
+#define __JIN_INPUT_H
+
+#include "event.h"
+#include "keyboard.h"
+#include "mouse.h"
+
+#endif \ No newline at end of file
diff --git a/src/libjin/Input/Joypad.cpp b/src/libjin/Input/Joypad.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/libjin/Input/Joypad.cpp
diff --git a/src/libjin/Input/Joypad.h b/src/libjin/Input/Joypad.h
new file mode 100644
index 0000000..e8d309b
--- /dev/null
+++ b/src/libjin/Input/Joypad.h
@@ -0,0 +1,14 @@
+#ifndef __JIN_JOYPAD_H
+#define __JIN_JOYPAD_H
+
+namespace jin
+{
+namespace input
+{
+
+
+
+}
+}
+
+#endif \ No newline at end of file
diff --git a/src/libjin/Input/Keyboard.cpp b/src/libjin/Input/Keyboard.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/libjin/Input/Keyboard.cpp
diff --git a/src/libjin/Input/Keyboard.h b/src/libjin/Input/Keyboard.h
new file mode 100644
index 0000000..bbb6456
--- /dev/null
+++ b/src/libjin/Input/Keyboard.h
@@ -0,0 +1,13 @@
+#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/libjin/Input/Mouse.cpp b/src/libjin/Input/Mouse.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/libjin/Input/Mouse.cpp
diff --git a/src/libjin/Input/Mouse.h b/src/libjin/Input/Mouse.h
new file mode 100644
index 0000000..b926327
--- /dev/null
+++ b/src/libjin/Input/Mouse.h
@@ -0,0 +1,15 @@
+#ifndef __JIN_MOUSE_H
+#define __JIN_MOUSE_H
+namespace jin
+{
+namespace input
+{
+ class Mouse
+ {
+ public:
+
+ };
+
+}
+}
+#endif \ No newline at end of file