#region Arthea License
/***********************************************************************
* Arthea MUD by R. Jennings (2007) http://arthea.googlecode.com/ *
* By using this code you comply with the Artistic and GPLv2 Licenses. *
***********************************************************************/
#endregion
using Arthea.Connections.Players;
using Arthea.Creation;
namespace Arthea.Interfaces
{
internal interface CustomEditType
{
/// <summary>
/// Allows custom editing of this type by player.
/// </summary>
/// <param name="player">The player.</param>
/// <param name="editor">The editor values.</param>
/// <param name="argument">The argument.</param>
void CustomEdit(Player player, OlcField editor, String argument);
}
}