18 lines
492 B
C#
18 lines
492 B
C#
using Content.Shared.Emag.Systems;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Emag.Components;
|
|
|
|
/// <summary>
|
|
/// Marker component for emagged entities
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class EmaggedComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The EmagType flags that were used to emag this device
|
|
/// </summary>
|
|
[DataField, AutoNetworkedField]
|
|
public EmagType EmagType = EmagType.None;
|
|
}
|