IHolidayCelebrate.cs 315 B

1234567891011
  1. namespace Content.Server.Holiday.Interfaces
  2. {
  3. public interface IHolidayCelebrate
  4. {
  5. /// <summary>
  6. /// This method is called before a round starts.
  7. /// Use it to do any fun festive modifications.
  8. /// </summary>
  9. void Celebrate(HolidayPrototype holiday);
  10. }
  11. }