aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-11-15 07:32:24 +0000
committerTeravus Ovares2007-11-15 07:32:24 +0000
commit179695909a8967bcdb092720a19c264d52fb4515 (patch)
treeb940ef5a1587b976ec2e8c7c0e2ae899198d41ef /OpenSim/Framework/IClientAPI.cs
parentadded first attempt at storing stopped physical objects (diff)
downloadopensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.zip
opensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.tar.gz
opensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.tar.bz2
opensim-SC_OLD-179695909a8967bcdb092720a19c264d52fb4515.tar.xz
* Implemented the little friendly pop tooltip messages that appear when you hover your mouse over prim with the object name, description, ownerid.. etc.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 451984c..06a8bab 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -203,6 +203,8 @@ namespace OpenSim.Framework
203 203
204 public delegate void ObjectSelect(uint localID, IClientAPI remoteClient); 204 public delegate void ObjectSelect(uint localID, IClientAPI remoteClient);
205 205
206 public delegate void RequestObjectPropertiesFamily(IClientAPI remoteClient,LLUUID AgentID, uint RequestFlags, LLUUID TaskID);
207
206 public delegate void ObjectDeselect(uint localID, IClientAPI remoteClient); 208 public delegate void ObjectDeselect(uint localID, IClientAPI remoteClient);
207 209
208 public delegate void UpdatePrimFlags(uint localID, Packet packet, IClientAPI remoteClient); 210 public delegate void UpdatePrimFlags(uint localID, Packet packet, IClientAPI remoteClient);
@@ -320,6 +322,7 @@ namespace OpenSim.Framework
320 event ObjectDeselect OnObjectDeselect; 322 event ObjectDeselect OnObjectDeselect;
321 event GenericCall7 OnObjectDescription; 323 event GenericCall7 OnObjectDescription;
322 event GenericCall7 OnObjectName; 324 event GenericCall7 OnObjectName;
325 event RequestObjectPropertiesFamily OnRequestObjectPropertiesFamily;
323 event UpdatePrimFlags OnUpdatePrimFlags; 326 event UpdatePrimFlags OnUpdatePrimFlags;
324 event UpdatePrimTexture OnUpdatePrimTexture; 327 event UpdatePrimTexture OnUpdatePrimTexture;
325 event UpdateVector OnUpdatePrimGroupPosition; 328 event UpdateVector OnUpdatePrimGroupPosition;