6
2026-01-24 12:49:55 +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);
}
}