package com.sparshui.common;

/**
 * Defines the types of touches that can ocurr in sparsh-UI:
 * Birth, Move, and Death.
 * 
 * @author Tony Ross
 *
 */
public class TouchState {
	/**
	 * 
	 */
	public final static int BIRTH = 0;
	/**
	 * 
	 */
  public final static int DEATH = 1;
	
	/**
	 * 
	 */
  public final static int MOVE = 2;

  public final static int CLICK = 3;
}
