12 lines
272 B
C#
12 lines
272 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components;
|
|
|
|
/// <summary>
|
|
/// Activate artifact just by touching it.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class ArtifactInteractionTriggerComponent : Component
|
|
{
|
|
}
|