import java.awt.Color;
import java.util.Enumeration;

public class OutStudent extends UvaStudent {
    //Overview:  An OutStudent is a UvaStudent who is no longer able to
    //participate in the simulation

    public OutStudent(){
      inTurn = false;
	friend = null;
	isTalking = false;
	isResponding = false;
        isHappy = false;

        natural = Color.green;
        isOut = true;
    }


    public void executeTurn () throws RuntimeException{

    }

}