11 lines
304 B
C#
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));
|
|
}
|
|
}
|