11 lines
262 B
C#
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);
|
|
}
|
|
}
|