From 3dffc3e3f647faa3e82126f5107ce13fbd610ffb Mon Sep 17 00:00:00 2001 From: MW Date: Sun, 19 Aug 2007 14:55:43 +0000 Subject: small clean up. --- OpenSim/Framework/General/Interfaces/IClientAPI.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenSim/Framework/General/Interfaces/IClientAPI.cs') diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index 2cedea0..e78cfb7 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs @@ -44,6 +44,7 @@ namespace OpenSim.Framework.Interfaces public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY); public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags); public delegate void DisconnectUser(); + public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID); public delegate void GenericCall(IClientAPI remoteClient); public delegate void GenericCall2(); @@ -103,6 +104,7 @@ namespace OpenSim.Framework.Interfaces event RequestMapBlocks OnRequestMapBlocks; event TeleportLocationRequest OnTeleportLocationRequest; event DisconnectUser OnDisconnectUser; + event RequestAvatarProperties OnRequestAvatarProperties; event GenericCall4 OnDeRezObject; event GenericCall OnRegionHandShakeReply; @@ -226,5 +228,6 @@ namespace OpenSim.Framework.Interfaces bool AddMoney( int debit ); void SendViewerTime(int phase); + void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID); } } -- cgit v1.1