Files
tbd-station-14/Content.Server/Disease/Server/DiseaseServerComponent.cs
2022-06-29 00:41:08 +10:00

16 lines
379 B
C#

using Content.Shared.Disease;
namespace Content.Server.Disease.Components
{
[RegisterComponent]
public sealed class DiseaseServerComponent : Component
{
/// <summary>
/// Which diseases this server has information on.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public List<DiseasePrototype> Diseases = new();
}
}