WritingAdditions::Map::Reject
Class of a reject.
Instance methods
Writes a reject given an output io and the reject to write and returns the written directory
Writes reject in my_wad to a file:
my_wad = WAD.read("Path/To/Wad")
my_wad.maps["MyMap"].reject.write("Path/To/reject.lmp")
Writes a reject given an output io and the reject to write and returns the written directory
Writes reject in my_wad to a file:
my_wad = WAD.read("Path/To/Wad")
File.open("Path/To/reject.lmp", "w+") do |file|
my_wad.maps["MyMap"].reject.write(file)
end