- 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);
- }
- }
|