* pupu
* Update LICENSE.TXT
* CLA
* CLA!
* Revert "CLA!"
This reverts commit f999e341a1.
* CLA2
* Update rsi.json
* CLA3
* Workbench sublicense
28 lines
857 B
C#
28 lines
857 B
C#
/*
|
|
* This file is sublicensed under MIT License
|
|
* https://github.com/space-wizards/space-station-14/blob/master/LICENSE.TXT
|
|
*/
|
|
|
|
using Content.Server._CP14.BiomeSpawner.EntitySystems;
|
|
using Content.Shared.Parallax.Biomes;
|
|
using Content.Shared.Whitelist;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._CP14.BiomeSpawner.Components;
|
|
|
|
/// <summary>
|
|
/// fills the tile in which it is located with the contents of the biome. Includes: tile, decals and entities
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14BiomeSpawnerSystem))]
|
|
public sealed partial class CP14BiomeSpawnerComponent : Component
|
|
{
|
|
[DataField]
|
|
public ProtoId<BiomeTemplatePrototype> Biome = "Grasslands";
|
|
|
|
/// <summary>
|
|
/// entities that we don't remove.
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public EntityWhitelist DeleteBlacklist = new();
|
|
}
|