package pi;

/**
 * Colors
 *
 * @author Daniel Frisk, twitter:danfrisk
 */
public enum Color {

    WHITE, ORANGE, MAGENTA, LIGHT_BLUE,
    YELLOW, LIME, PINK, GRAY,
    LIGHT_GRAY, CYAN, PURPLE, BLUE,
    BROWN, GREEN, RED, BLACK;

    /**
     * the block DATA for the color
     */
    final int woolColorData = ordinal();
}
