mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 10:07:15 +02:00
15 lines
457 B
C#
15 lines
457 B
C#
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Robust.Shared.GameObjects;
|
|
|
|
/// <summary>
|
|
/// If an entity with this component is placed on top of another anchored entity with this component and the same key it will replace it.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class PlacementReplacementComponent : Component
|
|
{
|
|
[DataField("key")]
|
|
public string Key = "";
|
|
}
|