Files
tbd-station-14/Content.Server/Holiday/Interfaces/IHolidayManager.cs
Vera Aguilera Puerto 9ee0ec4106 Holiday System (#3122)
2021-02-12 10:45:22 +01:00

15 lines
359 B
C#

using System.Collections.Generic;
namespace Content.Server.Holiday.Interfaces
{
public interface IHolidayManager
{
void Initialize();
void RefreshCurrentHolidays();
void DoGreet();
void DoCelebrate();
IEnumerable<HolidayPrototype> GetCurrentHolidays();
bool IsCurrentlyHoliday(string holiday);
}
}