diff options
Diffstat (limited to 'Week15 Mandelbrot/src/mandelbrot/Stopper.java')
-rw-r--r-- | Week15 Mandelbrot/src/mandelbrot/Stopper.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Week15 Mandelbrot/src/mandelbrot/Stopper.java b/Week15 Mandelbrot/src/mandelbrot/Stopper.java new file mode 100644 index 0000000..f47a471 --- /dev/null +++ b/Week15 Mandelbrot/src/mandelbrot/Stopper.java @@ -0,0 +1,14 @@ +/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package mandelbrot;
+
+/**
+ *
+ * @author Sjaak
+ */
+public interface Stopper {
+ void tryToStop();
+}
|