ET++: Stepping through a left mouse click in a button

This performs a normal command by calling Command::Perform().


void CommandProcessor::PerformNormalCommand(Command* cmd)
{
	if (cmd) {
		cmd->Perform();
		cmd->Done(0);
		cmd->Finish();
	}
}

Back to the method call sequence