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

11 lines
262 B
C#

using Robust.Shared.Serialization;
namespace Content.Server.Holiday.Interfaces
{
public interface IHolidayGreet : IExposeData
{
void IExposeData.ExposeData(ObjectSerializer serializer) { }
string Greet(HolidayPrototype holiday);
}
}