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