A class that parses binary GFF bytes into ruby-friendly data structures.
Included modules
Attributes
| root_struct | [R] |
Public class methods
read
(io)
Create a new Reader with the given io and immediately parse it.
[show source]
# File lib/nwn/gff/reader.rb, line 10 10: def self.read io 11: t = new(io) 12: t.root_struct 13: end