This commit is contained in:
Madeline Lim 2018-05-19 21:33:10 -07:00
parent ca3c5efbfe
commit 2e8d97a0da
1 changed files with 9 additions and 0 deletions

9
map2xml.rb Normal file
View File

@ -0,0 +1,9 @@
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 }