struct

WritingAdditions::Map::Sidedef

Inherits Struct < Value < Object

Structure of a sidedef.

Constructors

new

Class methods

write(file : String | Path, sidedefs : Array(::WAD::Map::Sidedef)) : ::WAD::Directory

Writes a list of sidedefs given an output io and the sidedefs to write and returns the written directory

Writes sidedefs in my_wad to a file:

my_wad = WAD.read("Path/To/Wad")
WAD::Map::Sidedef.write("Path/To/sidedefs.lmp", my_wad.maps["MyMap"].sidedefs)
write(io : IO, sidedefs : Array(::WAD::Map::Sidedef)) : ::WAD::Directory

Writes a list of sidedefs given an output io and the sidedefs to write and returns the written directory

Writes sidedefs in my_wad to a file:

my_wad = WAD.read("Path/To/Wad")
File.open("Path/To/sidedefs.lmp", "w+") do |file|
  WAD::Map::Sidedef.write(my_wad.maps["MyMap"].sidedefs)
end

Instance methods

initialize