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

9 lines
218 B
C#

namespace Content.Server.Holiday.Interfaces
{
[ImplicitDataDefinitionForInheritors]
public interface IHolidayShouldCelebrate
{
bool ShouldCelebrate(DateTime date, HolidayPrototype holiday);
}
}