diff options
Diffstat (limited to 'src/functionstring.h')
| -rw-r--r-- | src/functionstring.h | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/src/functionstring.h b/src/functionstring.h new file mode 100644 index 0000000..36e4f51 --- /dev/null +++ b/src/functionstring.h | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | #ifndef FUNCTION_STRING_H | ||
| 2 | #define FUNCTION_STRING_H | ||
| 3 | |||
| 4 | #include "function.h" | ||
| 5 | |||
| 6 | class FunctionString : public Function | ||
| 7 | { | ||
| 8 | public: | ||
| 9 | FunctionString(); | ||
| 10 | virtual ~FunctionString(); | ||
| 11 | |||
| 12 | virtual Bu::String getName() const { return "string"; } | ||
| 13 | virtual void call( class GameState &gState ); | ||
| 14 | }; | ||
| 15 | |||
| 16 | #endif | ||
