From d4f4503818492068bc2254c9bd76fd54deaa8f14 Mon Sep 17 00:00:00 2001 From: Tim Pulver Date: Thu, 17 Jan 2013 11:27:05 +0100 Subject: [PATCH] Update Lsystem.pde Added import of class Scanner, which is needed in 2.0 beta versions. --- Lsystem.pde | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lsystem.pde b/Lsystem.pde index 57e260e..6fdbc3d 100644 --- a/Lsystem.pde +++ b/Lsystem.pde @@ -15,6 +15,7 @@ // You should have received a copy of the GNU General Public License // along with Lisip. If not, see . +import java.util.Scanner; class Lsystem { @@ -63,4 +64,4 @@ class Lsystem } } -} \ No newline at end of file +}