Files
tbd-station-14/Content.Server/Holiday/Greet/DefaultHolidayGreet.cs
2022-02-16 18:23:23 +11:00

11 lines
311 B
C#

using Content.Server.Holiday.Interfaces;
using Robust.Shared.Localization;
namespace Content.Server.Holiday.Greet
{
public sealed class DefaultHolidayGreet : IHolidayGreet
{
public string Greet(HolidayPrototype holiday) => Loc.GetString("holiday-greet", ("holidayName", holiday.Name));
}
}