aboutsummaryrefslogtreecommitdiff
path: root/mobileapp/src/smoots/udesign/packet/MotionType.java
blob: 8c26ae7595f6b628dc009e06a729748428f1ce00 (plain)
1
2
3
4
5
6
7
8
9
10
11
package smoots.udesign.packet;

/**
 * Wrapper class containing types of motions one can do with the phone.
 */
public class MotionType {
	public static int MOVE = 1;
	public static int SHAKE = 2;
	public static int ROTATE = 3;
	public static int SLASH = 4;
}