build abstract method

Iterable<String> build()

Build the map. Recommend that implementations use synchronous generators so that the building of complex maps can be driven incrementally by the game loop. For example: place one room at a time for a dungeon map. The string values emitted by the returned Iterable could be used to dynamically update a loading screen.

Implementation

Iterable<String> build();