summaryrefslogtreecommitdiff
path: root/src/functiondebugstring.h
blob: cc7c6ac60e0ac1e29db4263416a69523c71a4c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef FUNCTION_DEBUG_STRING_H
#define FUNCTION_DEBUG_STRING_H

#include "function.h"

class FunctionDebugString : public Function
{
public:
	FunctionDebugString();
	virtual ~FunctionDebugString();

	virtual Bu::String getName() const { return "debugString"; }
	virtual void call( class GameState &gState );

private:
	Bu::String format( const Bu::String &sSrc );
};

#endif