From 3232d0069421a1585e7e42f503c1ed7b1910891c Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 18 Jan 2012 23:58:30 -0700 Subject: Added functions join, string, and keys. --- src/functionkeys.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/functionkeys.h (limited to 'src/functionkeys.h') diff --git a/src/functionkeys.h b/src/functionkeys.h new file mode 100644 index 0000000..ccc3bdd --- /dev/null +++ b/src/functionkeys.h @@ -0,0 +1,16 @@ +#ifndef FUNCTION_KEYS_H +#define FUNCTION_KEYS_H + +#include "function.h" + +class FunctionKeys : public Function +{ +public: + FunctionKeys(); + virtual ~FunctionKeys(); + + virtual Bu::String getName() const { return "keys"; } + virtual void call( class GameState &gState ); +}; + +#endif -- cgit v1.2.3