All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sparshui.common.TouchState Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy