From 8c17868585e2a12f947ec387947c4521ef21d775 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 2 Jun 2008 16:20:47 +0000 Subject: keyboard binds --- src/client/key.cc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/client/key.cc (limited to 'src/client/key.cc') 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() +{ +} + +} -- cgit v1.2.3