Method: CraftBook::NBT::TagBuilder#byte_array
- Defined in:
- lib/craftbook/nbt/tag_builder.rb
#byte_array(name, *values) ⇒ self
Creates a ByteArrayTag from the specified values, and adds it to the current node.
142 143 144 |
# File 'lib/craftbook/nbt/tag_builder.rb', line 142 def byte_array(name, *values) add(ByteArrayTag.new(name, *values)) end |