package h06.ui; import org.tudalgo.algoutils.student.annotation.DoNotTouch; /** * The DrawInstruction enum represents draw instructions in order to draw a fractal. * * @author Manuel Peters */ @DoNotTouch public enum DrawInstruction { DRAW_LINE, TURN_LEFT, TURN_RIGHT }