//This file generated automatically from the MARIUS LP system, please do not edit.

public class ManejadorComando {

private Comando [] comandos = new Comando[100];
private int ultimo = 0;
public void agregar(Comando cmd){ comandos[ultimo] = cmd; ultimo++;}
public void trabajar(){ for (int i=0;i<ultimo;i++) { comandos[i].ejecutar(); }}

} //End of class ManejadorComando
