I'm trying to store a list of user commands in a struct. The struct consists of a command (char array) and a pointer to a static member function which may have any number of arguments. I would like to be able to instantiate the struct, and store them in a vector, and then when accessing one, to call the function pointer it stores, passing in the necessary arguments.I'm trying to store a list of user commands in