Show ICIGestureEvent.java syntax highlighted
/**
*
*/
package ucalgary.ebe.ci.gestures.events;
import java.util.List;
import ucalgary.ebe.ci.ICIInputEvent;
import ucalgary.ebe.ci.common.ICIPoint;
import ucalgary.ebe.ci.gestures.ICIGestureIndentifier;
/**
* @author hkolenda
*
*/
public interface ICIGestureEvent extends ICIInputEvent {
public ICIGestureIndentifier getGesture();
public List<ICIPoint> getCoords();
}
See more files for this project here