Celestial/map2xml.rb

10 lines
213 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'
fn = ARGV[0]
a = CelesteMapReader.new(fn)
File.open("#{File.basename(fn)}.xml", "wb") { |f| f.write a.root.inspect }