Files
wwdpublic/Content.Server/_White/StationEvents/Components/VentSpawnRuleComponent.cs
Spatison 62d4ba308f [Feature] Xenomorphs Part 1 (#716)
* init commit

* xenomorph: part 1

* weed heal

* fix Rsi

* fix Yaml linter

* fix
2025-07-27 18:11:03 +03:00

14 lines
305 B
C#

using Robust.Shared.Map;
namespace Content.Server._White.StationEvents.Components;
[RegisterComponent]
public sealed partial class VentSpawnRuleComponent : Component
{
/// <summary>
/// Locations that was picked.
/// </summary>
[ViewVariables]
public List<MapCoordinates>? Coords;
}