mirror of
https://github.com/maddievision/Celestial.git
synced 2024-08-14 23:55:37 +00:00
8 lines
193 B
Ruby
8 lines
193 B
Ruby
require "./celeste_map"
|
|
# fn = 'app/Content/Maps/1-ForsakenCity.bin'
|
|
|
|
ARGV.each do |fn|
|
|
base = File.basename(fn, ".json")
|
|
a = CelesteMap.new(fn, fmt: :json)
|
|
a.write "bin/#{base}.bin"
|
|
end
|