summaryrefslogtreecommitdiff
path: root/src/functiondebugstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/functiondebugstring.h')
-rw-r--r--src/functiondebugstring.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/functiondebugstring.h b/src/functiondebugstring.h
new file mode 100644
index 0000000..cc7c6ac
--- /dev/null
+++ b/src/functiondebugstring.h
@@ -0,0 +1,19 @@
1#ifndef FUNCTION_DEBUG_STRING_H
2#define FUNCTION_DEBUG_STRING_H
3
4#include "function.h"
5
6class FunctionDebugString : public Function
7{
8public:
9 FunctionDebugString();
10 virtual ~FunctionDebugString();
11
12 virtual Bu::String getName() const { return "debugString"; }
13 virtual void call( class GameState &gState );
14
15private:
16 Bu::String format( const Bu::String &sSrc );
17};
18
19#endif