Delta-v/Content.Shared/Disease/DiseasedComponent.cs

13 lines
345 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Disease.Components
{
[NetworkedComponent]
[RegisterComponent]
/// This is added to anyone with at least 1 disease
/// and helps cull event subscriptions and entity queries
/// when they are not relevant.
public sealed class DiseasedComponent : Component
{}
}