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