mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-16 12:43:09 +00:00
* Macro optimizes SSmapping saving 50% * fix merge issues, update to current turf_blacklist api Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Co-authored-by: tastyfish <crazychris32@gmail.com>
7 lines
405 B
Plaintext
7 lines
405 B
Plaintext
///This type is responsible for any map generation behavior that is done in areas, override this to allow for area-specific map generation. This generation is ran by areas in initialize.
|
|
/datum/map_generator
|
|
|
|
///This proc will be ran by areas on Initialize, and provides the areas turfs as argument to allow for generation.
|
|
/datum/map_generator/proc/generate_terrain(list/turfs, area/generate_in)
|
|
return
|