2025-01-30 05:05:47 +01:00
|
|
|
using Content.Shared.Emag.Systems;
|
2023-02-19 01:03:06 +00:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Emag.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marker component for emagged entities
|
|
|
|
|
/// </summary>
|
2025-01-30 05:05:47 +01:00
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class EmaggedComponent : Component
|
2023-02-19 01:03:06 +00:00
|
|
|
{
|
2025-01-30 05:05:47 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// The EmagType flags that were used to emag this device
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField, AutoNetworkedField]
|
|
|
|
|
public EmagType EmagType = EmagType.None;
|
2023-02-19 01:03:06 +00:00
|
|
|
}
|