Ejemplo n.º 1
0
char GameFlow::GetUserInput(ActionList actions)
{
	char c;
	c=toupper(_getch());
	while(!actions.IsValidAction(c))
	{
		c=toupper(_getch());
	}
	return(c);
}