internal bool NotifyClicked(Clickable c) { if (step < toActivate.Length && c == toActivate[step]) { ++step; c.DoAction(); return(true); } return(false); }