/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package sumulationsecondlab;

/**
 *
 * @author Student
 */
public class State{
   int queueLength, serverStatus;
   public State(){
   queueLength=0;
   serverStatus=0;
   }

}