diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-01-18 23:58:30 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-01-18 23:58:30 -0700 |
commit | 3232d0069421a1585e7e42f503c1ed7b1910891c (patch) | |
tree | 0d2c5ed5e24a9ffeb3c1b3c08528971a8a3d587e /src/functionkeys.h | |
parent | 0bdd1441fc95f70f2f86c89c20eb866a9ca2787b (diff) | |
download | stage-3232d0069421a1585e7e42f503c1ed7b1910891c.tar.gz stage-3232d0069421a1585e7e42f503c1ed7b1910891c.tar.bz2 stage-3232d0069421a1585e7e42f503c1ed7b1910891c.tar.xz stage-3232d0069421a1585e7e42f503c1ed7b1910891c.zip |
Added functions join, string, and keys.
Diffstat (limited to 'src/functionkeys.h')
-rw-r--r-- | src/functionkeys.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 @@ | |||
1 | #ifndef FUNCTION_KEYS_H | ||
2 | #define FUNCTION_KEYS_H | ||
3 | |||
4 | #include "function.h" | ||
5 | |||
6 | class FunctionKeys : public Function | ||
7 | { | ||
8 | public: | ||
9 | FunctionKeys(); | ||
10 | virtual ~FunctionKeys(); | ||
11 | |||
12 | virtual Bu::String getName() const { return "keys"; } | ||
13 | virtual void call( class GameState &gState ); | ||
14 | }; | ||
15 | |||
16 | #endif | ||