blob: 36ff1ad9c43f727a0f614df9b49746ab26c92d29 (
plain)
1
2
3
4
5
6
7
8
9
|
using libsecondlife;
namespace OpenSim.Region.Environment.Interfaces
{
public interface ISimChat
{
void SimChat(byte[] message, byte type, int channel, LLVector3 fromPos, string fromName, LLUUID fromAgentID);
}
}
|