Files
tbd-station-14/Content.Server/Holiday/Interfaces/IHolidayShouldCelebrate.cs

9 lines
226 B
C#

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