Files
tbd-station-14/Content.Server/Holiday/Greet/DefaultHolidayGreet.cs
Vera Aguilera Puerto 9ee0ec4106 Holiday System (#3122)
2021-02-12 10:45:22 +01:00

14 lines
327 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)
{
return Loc.GetString("Have a happy {0}!", holiday.Name);
}
}
}