/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Francisco Matesanz & Benjamin Nogal
 */
public class slot {

    byte value;
    boolean aviable;

    slot() {
        value = 0;
        aviable = true;
    }
}

