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-06-02 16:20:47 +0000
committerStijn Buys <ingar@osirion.org>2008-06-02 16:20:47 +0000
commit8c17868585e2a12f947ec387947c4521ef21d775 (patch)
tree83d36d3dc36698aa0d36a3b9b9a8bb0826520586 /src/client/key.cc
parent0f87d2fd05786f7ab128d4a041673f6fb085139f (diff)
keyboard binds
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()
+{
+}
+
+}