mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
15 lines
310 B
C#
15 lines
310 B
C#
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
/// <summary>
|
|
/// Spawns entities inside corners.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Dungeon data keys are:
|
|
/// - CornerClutter
|
|
/// </remarks>
|
|
public sealed partial class CornerClutterDunGen : IDunGenLayer
|
|
{
|
|
[DataField]
|
|
public float Chance = 0.50f;
|
|
}
|