Ejemplo n.º 1
0
		public void Visit (IBoardCommandsVisitor vistor)
		{
			foreach(var command in m_commands)
			{
				command.Visit (vistor);
			
			}
		}
Ejemplo n.º 2
0
			public void Visit (IBoardCommandsVisitor vistor)
			{
				vistor.WalkCommand (this);
			}