14 lines
327 B
C#
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);
|
|
}
|
|
}
|
|
}
|