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