12 lines
315 B
C#
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);
|
|
}
|
|
}
|