Celestial/map2xml.rb

10 lines
225 B
Ruby
Raw Normal View History

2018-05-20 04:33:10 +00:00
require "./celeste_map_reader"
require 'ruby2d'
# fn = 'app/Content/Maps/1-ForsakenCity.bin'
2018-05-20 04:34:07 +00:00
ARGV.each do |fn|
a = CelesteMapReader.new(fn)
File.open("#{File.basename(fn)}.xml", "wb") { |f| f.write a.root.inspect }
end