aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General/Interfaces/IClientAPI.cs
diff options
context:
space:
mode:
authorMW2007-08-19 14:55:43 +0000
committerMW2007-08-19 14:55:43 +0000
commit3dffc3e3f647faa3e82126f5107ce13fbd610ffb (patch)
tree7ba2c5494218f34fdb42253615af625c32d9ccde /OpenSim/Framework/General/Interfaces/IClientAPI.cs
parentSqlite datastore should now save the textures and extraparams data (used by s... (diff)
downloadopensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.zip
opensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.tar.gz
opensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.tar.bz2
opensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.tar.xz
small clean up.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/General/Interfaces/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
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
44 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY); 44 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY);
45 public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags); 45 public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags);
46 public delegate void DisconnectUser(); 46 public delegate void DisconnectUser();
47 public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID);
47 48
48 public delegate void GenericCall(IClientAPI remoteClient); 49 public delegate void GenericCall(IClientAPI remoteClient);
49 public delegate void GenericCall2(); 50 public delegate void GenericCall2();
@@ -103,6 +104,7 @@ namespace OpenSim.Framework.Interfaces
103 event RequestMapBlocks OnRequestMapBlocks; 104 event RequestMapBlocks OnRequestMapBlocks;
104 event TeleportLocationRequest OnTeleportLocationRequest; 105 event TeleportLocationRequest OnTeleportLocationRequest;
105 event DisconnectUser OnDisconnectUser; 106 event DisconnectUser OnDisconnectUser;
107 event RequestAvatarProperties OnRequestAvatarProperties;
106 108
107 event GenericCall4 OnDeRezObject; 109 event GenericCall4 OnDeRezObject;
108 event GenericCall OnRegionHandShakeReply; 110 event GenericCall OnRegionHandShakeReply;
@@ -226,5 +228,6 @@ namespace OpenSim.Framework.Interfaces
226 bool AddMoney( int debit ); 228 bool AddMoney( int debit );
227 229
228 void SendViewerTime(int phase); 230 void SendViewerTime(int phase);
231 void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID);
229 } 232 }
230} 233}