13 lines
324 B
C#
13 lines
324 B
C#
namespace Content.Shared.Parallax.Biomes.Layers;
|
|
|
|
/// <summary>
|
|
/// Handles actual objects such as decals and entities.
|
|
/// </summary>
|
|
public interface IBiomeWorldLayer : IBiomeLayer
|
|
{
|
|
/// <summary>
|
|
/// What tiles we're allowed to spawn on, real or biome.
|
|
/// </summary>
|
|
List<string> AllowedTiles { get; }
|
|
}
|