#ifndef COMMAND_SET_H #define COMMAND_SET_H #include #include class CommandSet { public: CommandSet(); virtual ~CommandSet(); void addCommand( class Command *pCmd ); bool dispatch( class GameState &gState, const Bu::StringList &lCmd ); private: typedef Bu::List CommandList; CommandList lCommand; }; #endif