Custom.cs 406 B

1234567891011121314151617
  1. using Content.Server.Holiday.Interfaces;
  2. using JetBrains.Annotations;
  3. namespace Content.Server.Holiday.Greet
  4. {
  5. [UsedImplicitly]
  6. [DataDefinition]
  7. public sealed partial class Custom : IHolidayGreet
  8. {
  9. [DataField("text")] private string _greet = string.Empty;
  10. public string Greet(HolidayPrototype holiday)
  11. {
  12. return Loc.GetString(_greet);
  13. }
  14. }
  15. }