1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef FUNCTION_EXISTS_H #define FUNCTION_EXISTS_H #include "function.h" class FunctionExists : public Function { public: FunctionExists(); virtual ~FunctionExists(); virtual Bu::String getName() const { return "exists"; } virtual void call( class GameState &gState ); }; #endif