public void VacuumPerception1(VacuumLocation location, VacuumStatus status, byte[] documento)
        {
            this.location = location;
            this.status   = status;

            if (documento.Length > 0)
            {
                this.DocumentoInt = documento.GetHashCode();
                this.Documento    = documento;
            }
        }
Exemplo n.º 2
0
 public void SetStatus(VacuumLocation location, VacuumStatus status)
 {
     this.state[location] = status;
 }
Exemplo n.º 3
0
 public VacuumPerception(VacuumLocation location, VacuumStatus status)
 {
     this.location = location;
     this.status   = status;
 }