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