using Robust.Shared.Prototypes;
namespace Content.Server.Holiday;
///
/// This is used for an entity that enables unique visuals on specified holidays.
///
[RegisterComponent]
public sealed partial class HolidayVisualsComponent : Component
{
///
/// A dictionary relating a generic key to a list of holidays.
/// If any of the holidays are being celebrated, that key will be set for holiday visuals.
///
[DataField]
public Dictionary>> Holidays = new();
}