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/key.cc')
-rw-r--r--src/client/key.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/client/key.cc b/src/client/key.cc
new file mode 100644
index 0000000..066f6ef
--- /dev/null
+++ b/src/client/key.cc
@@ -0,0 +1,29 @@
+/*
+ client/key.cc
+ This file is part of the Osirion project and is distributed under
+ the terms and conditions of the GNU General Public License version 2
+*/
+
+#include "client/key.h"
+
+namespace client {
+
+Key::Key(const char *name, unsigned int keysym, char ascii, const char *bind)
+{
+ key_sym = keysym;
+ key_ascii = ascii;
+ key_pressed = 0;
+
+ key_name.assign(name);
+
+ if (bind)
+ key_bind.assign(bind);
+ else
+ key_bind.clear();
+}
+
+Key::~Key()
+{
+}
+
+}