mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-29 19:11:51 +00:00
* Planetary station traits: Forever Storm and Forested * Update CaveGenerator.dm * Update CaveGenerator.dm --------- Co-authored-by: Time-Green <7501474+Time-Green@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
11 lines
579 B
Plaintext
11 lines
579 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
|
|
|
|
/// Populate terrain with flora, fauna, features and basically everything that isn't a turf
|
|
/datum/map_generator/proc/populate_terrain(list/turfs, area/generate_in)
|
|
return
|