summaryrefslogtreecommitdiff
path: root/src/functioncount.h
blob: 24f9e4ec88a351599058adc99ce5ef229d6a0b12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef FUNCTION_COUNT_H
#define FUNCTION_COUNT_H

#include "function.h"

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

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

#endif