Files
tbd-station-14/Content.Server/Holiday/Greet/DefaultHolidayGreet.cs
2021-06-21 02:13:54 +02:00

11 lines
304 B
C#

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