Class Joyau::GameMap
In: ruby/site_ruby/joyau/enumerable.rb
Parent: Object

Methods

each  

Included Modules

Enumerable

Public Instance methods

[Source]

# File ruby/site_ruby/joyau/enumerable.rb, line 41
    def each
      # A map is a collection of tiles, rather than a collection of tilesets.
      each_tile do |tile|
        yield tile
      end
    end

[Validate]