Method: Onoma::Nomenclature#new_boundaries

Defined in:
lib/onoma/nomenclature.rb

#new_boundaries(count = 2) ⇒ Object



341
342
343
344
345
346
347
348
# File 'lib/onoma/nomenclature.rb', line 341

def new_boundaries(count = 2)
  boundaries = []
  count.times do
    @forest_right += 1
    boundaries << @forest_right
  end
  boundaries
end