git-subtree-dir: solution/H06 git-subtree-split: 24f4b42e8e9b4703a06f5d8f48a58125c4eb9682
15 lines
288 B
Java
15 lines
288 B
Java
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
|
|
}
|