mirror of
https://github.com/opensim/opensim.git
synced 2026-07-14 03:15:36 +08:00
16 lines
393 B
C#
16 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenMetaverse;
|
|
|
|
namespace OpenSim.Framework.Client
|
|
{
|
|
public interface IClientChat
|
|
{
|
|
event ChatMessage OnChatFromClient;
|
|
|
|
void SendChatMessage(string message, byte type, Vector3 fromPos, string fromName, UUID fromAgentID, byte source,
|
|
byte audible);
|
|
}
|
|
}
|