Update project_files_creator.rb

This commit is contained in:
egg82
2016-08-17 13:29:07 -06:00
committed by GitHub
parent 2b900f94d1
commit 49c19a0c21

View File

@@ -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
end