* Missed a file from previous checkin.
parent
4e94989106
commit
f1aa849dff
|
@ -0,0 +1,15 @@
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue