| 1234567891011121314151617 |
- using Content.Server.Holiday.Interfaces;
- using JetBrains.Annotations;
- namespace Content.Server.Holiday.Greet
- {
- [UsedImplicitly]
- [DataDefinition]
- public sealed partial class Custom : IHolidayGreet
- {
- [DataField("text")] private string _greet = string.Empty;
- public string Greet(HolidayPrototype holiday)
- {
- return Loc.GetString(_greet);
- }
- }
- }
|