Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-08-04 22:32:59 +0000
committerStijn Buys <ingar@osirion.org>2008-08-04 22:32:59 +0000
commit5680cffdd4afdb99d39c644a6c397e670e958848 (patch)
tree2ac3d23c49e71731c416b434da37b97b43fa6621 /src/client/joystick.h
parent50a1e2b2fe3c207c7227df4941f2f66990db0c2c (diff)
initial joystick support, added cl_drawkeypress variable
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__