ForgeCore/NonCommands/nCMD.cs
2020-03-10 11:47:20 -07:00

14 lines
282 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using OpenMetaverse;
namespace Bot.NonCommands
{
public interface nCMD
{
public void handle(string text, UUID User, string agentName, MessageHandler.Destinations src, UUID originator);
}
}