mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
9 lines
229 B
C#
9 lines
229 B
C#
using NexusForever.WorldServer.Command.Context;
|
|
|
|
namespace NexusForever.WorldServer.Command.Convert
|
|
{
|
|
public interface IParameterConvert
|
|
{
|
|
object Convert(ICommandContext context, ParameterQueue queue);
|
|
}
|
|
}
|