package at.grabner.circleprogress;
public enum Direction {
/**
* The bar grows clockwise from the start angle, and the spinner rotates clockwise.
*/
CW,
/**
* The bar grows counter-clockwise from the start angle, and the spinner rotates
* counter-clockwise.
*/
CCW
}