From 77d877160d5c3b8a7e9c30e81bd6ca1f4060b5f9 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 8 Feb 2015 21:51:53 +0000 Subject: Added a menu to configure key controls. --- src/client/control.cc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/client/control.cc (limited to 'src/client/control.cc') diff --git a/src/client/control.cc b/src/client/control.cc new file mode 100644 index 0000000..ab8c99f --- /dev/null +++ b/src/client/control.cc @@ -0,0 +1,23 @@ +/* + client/control.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 +*/ + +#include "client/control.h" + +namespace client +{ + +Control::Control(const char *name, const char *command, const char *keyname) +{ + _name.assign(name); + _command.assign(command); + _keyname.assign(keyname); +} + +Control::~Control() +{ +} + +} // namespace client -- cgit v1.2.3