6
StarHorizon_Public/Content.Server/GameTicking/Rules/VariationPass/SolarPanelReplaceVariationPassSystem.cs
2025-11-11 11:18:56 +03:00

12 lines
549 B
C#

using Content.Server.GameTicking.Rules.VariationPass.Components;
using Content.Server.GameTicking.Rules.VariationPass.Components.ReplacementMarkers;
namespace Content.Server.GameTicking.Rules.VariationPass;
/// <summary>
/// This handles the ability to replace entities marked with <see cref="SolarPanelReplacementMarkerComponent"/> in a variation pass
/// </summary>
public sealed class SolarPanelReplaceVariationPassSystem : BaseEntityReplaceVariationPassSystem<SolarPanelReplacementMarkerComponent, SolarPanelReplaceVariationPassComponent>
{
}