aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/cycling74/max/DataTypes.java
blob: db0f2a2d51d8498bbb5be4bb5f6a83564e298365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

package com.cycling74.max;

/**
 * DataTypes values that can be used to defined an inlet or outlet.
 */
public class DataTypes {
	public static int ALL = 15;
	public static int ANYTHING = 15;
	public static int FLOAT = 2;
	public static int INT = 1;
	public static int LIST = 4;
	public static int MESSAGE = 8;
}