13 lines
259 B
C#
13 lines
259 B
C#
using Content.Server.Holiday.Interfaces;
|
|
|
|
namespace Content.Server.Holiday.Celebrate
|
|
{
|
|
public class DefaultHolidayCelebrate : IHolidayCelebrate
|
|
{
|
|
public void Celebrate(HolidayPrototype holiday)
|
|
{
|
|
// Nada.
|
|
}
|
|
}
|
|
}
|