From 49c19a0c2139864166d7b01cc146f69db37f3878 Mon Sep 17 00:00:00 2001 From: egg82 Date: Wed, 17 Aug 2016 13:29:07 -0600 Subject: [PATCH] Update project_files_creator.rb --- lib/output/project_files_creator.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/output/project_files_creator.rb b/lib/output/project_files_creator.rb index c1e6f3a38..273deb0cb 100644 --- a/lib/output/project_files_creator.rb +++ b/lib/output/project_files_creator.rb @@ -13,7 +13,7 @@ class ProjectFilesCreator # @param [Object] systems list of systems that have been defined and randomised # @param [Object] out_dir the directory that the project output should be stored into # @param [Object] scenario the file path used to as a basis - def initialize(systems, out_dir, scenario) + def initialize(systems, out_dir, scenario, gui_output) @systems = systems @out_dir = out_dir @@ -24,6 +24,7 @@ class ProjectFilesCreator end @scenario = scenario @time = Time.new.to_s + @gui_output = gui_output end @@ -86,4 +87,4 @@ class ProjectFilesCreator binding end -end \ No newline at end of file +end