package breakout;

/**
 * This class contains symbolic constants used for protocol.
 * 
 * @author  Jennifer Shieh
 */
public class Constants
{	
	/**
	 *Constant to be used for multi-ball play; keep the ball
	 */ 
	public static final int KEEP_BALL = 10001;
	
	/**
	 *Constant used for multi-ball play; delete ball when it misses the paddle
	 */
	public static final int DEL_BALL = 10002;
	
}