14 lines
267 B
C#
14 lines
267 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, Destinations src, UUID originator);
|
|
}
|
|
}
|