6
2026-01-18 12:53:36 +03:00

12 lines
315 B
C#

namespace Content.Server.Holiday.Interfaces
{
public interface IHolidayCelebrate
{
/// <summary>
/// This method is called before a round starts.
/// Use it to do any fun festive modifications.
/// </summary>
void Celebrate(HolidayPrototype holiday);
}
}