Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/joystick.h')
-rw-r--r--src/client/joystick.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/client/joystick.h b/src/client/joystick.h
new file mode 100644
index 0000000..e21a60c
--- /dev/null
+++ b/src/client/joystick.h
@@ -0,0 +1,25 @@
+/*
+ client/joystick.h
+ This file is part of the Osirion project and is distributed under
+ the terms and conditions of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_CLIENT_JOYSTICK_H__
+#define __INCLUDED_CLIENT_JOYSTICK_H__
+
+namespace client
+{
+
+class Joystick
+{
+public:
+ static void init();
+
+ static void shutdown();
+
+ static void frame();
+};
+
+}
+
+#endif // __INCLUDED_CLIENT_JOYSTICK_H__