12 lines
568 B
C#
12 lines
568 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="ReinforcedWallReplacementMarkerComponent"/> in a variation pass
|
|
/// </summary>
|
|
public sealed class ReinforcedWallReplaceVariationPassSystem : BaseEntityReplaceVariationPassSystem<ReinforcedWallReplacementMarkerComponent, ReinforcedWallReplaceVariationPassComponent>
|
|
{
|
|
}
|