CS-PROJECTS / towerofhanoi / Position.java
Position.java
Raw
package towerofhanoi;

//Virginia Tech Honor Code Pledge:
//
//As a Hokie, I will conduct myself with honor and integrity at all times.
//I will not lie, cheat, or steal, nor will I accept the actions of those who
//do.
//-- Jordan Harrington (jordanha23)

/**
* @author Jordan Harrington
* @version <3/25/2020>
*/

public enum Position {
    
    LEFT, MIDDLE, RIGHT, DEFAULT;

}