nexusforever/Source/NexusForever.WorldServer/Command/Convert/IParameterConvert.cs

9 lines
229 B
C#

using NexusForever.WorldServer.Command.Context;
namespace NexusForever.WorldServer.Command.Convert
{
public interface IParameterConvert
{
object Convert(ICommandContext context, ParameterQueue queue);
}
}