12 lines
240 B
C#
12 lines
240 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Emag.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Marker component for emagged entities
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed class EmaggedComponent : Component
|
||
|
|
{
|
||
|
|
}
|