using Content.Shared.Maps; using Robust.Shared.Prototypes; namespace Content.Shared.Parallax.Biomes.Layers; /// /// Handles actual objects such as decals and entities. /// public partial interface IBiomeWorldLayer : IBiomeLayer { /// /// What tiles we're allowed to spawn on, real or biome. /// List> AllowedTiles { get; } }