FOP-2425-Marathon/src/main/java/h06/ui/DrawInstruction.java
Oshgnacknak 858fd03c30 Squashed 'solution/H06/' content from commit 24f4b42
git-subtree-dir: solution/H06
git-subtree-split: 24f4b42e8e9b4703a06f5d8f48a58125c4eb9682
2025-01-11 16:41:11 +01:00

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
}