#ifndef FUNCTION_INTEGER_H #define FUNCTION_INTEGER_H #include "function.h" class FunctionInteger : public Function { public: FunctionInteger(); virtual ~FunctionInteger(); virtual Bu::String getName() const { return "integer"; } virtual void call( class GameState &gState ); }; #endif