Files
tbd-station-14/Content.Server/Holiday/ShouldCelebrate/FridayThirteenth.cs
2022-05-13 17:59:03 +10:00

18 lines
472 B
C#

using Content.Server.Holiday.Interfaces;
using JetBrains.Annotations;
namespace Content.Server.Holiday.ShouldCelebrate
{
/// <summary>
/// For Friday the 13th. Spooky!
/// </summary>
[UsedImplicitly]
public sealed class FridayThirteenth : IHolidayShouldCelebrate
{
public bool ShouldCelebrate(DateTime date, HolidayPrototype holiday)
{
return date.Day == 13 && date.DayOfWeek == DayOfWeek.Friday;
}
}
}