diff options
author | Melanie Thielker | 2008-10-04 01:09:22 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-04 01:09:22 +0000 |
commit | 74f89fb22da159a940e942192d0cb59163e78987 (patch) | |
tree | d7fc5ace338e6e07c6b6785a5fb4ee308a08bcec /OpenSim/Framework | |
parent | Add the missing bits for the new region-search: (diff) | |
download | opensim-SC_OLD-74f89fb22da159a940e942192d0cb59163e78987.zip opensim-SC_OLD-74f89fb22da159a940e942192d0cb59163e78987.tar.gz opensim-SC_OLD-74f89fb22da159a940e942192d0cb59163e78987.tar.bz2 opensim-SC_OLD-74f89fb22da159a940e942192d0cb59163e78987.tar.xz |
Add "Drop" functionality to pie menu
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index d2ee770..3a5402c 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -112,6 +112,7 @@ namespace OpenSim.Framework | |||
112 | IClientAPI remoteClient, UUID AgentID, uint RequestFlags, UUID TaskID); | 112 | IClientAPI remoteClient, UUID AgentID, uint RequestFlags, UUID TaskID); |
113 | 113 | ||
114 | public delegate void ObjectDeselect(uint localID, IClientAPI remoteClient); | 114 | public delegate void ObjectDeselect(uint localID, IClientAPI remoteClient); |
115 | public delegate void ObjectDrop(uint localID, IClientAPI remoteClient); | ||
115 | 116 | ||
116 | public delegate void UpdatePrimFlags(uint localID, Packet packet, IClientAPI remoteClient); | 117 | public delegate void UpdatePrimFlags(uint localID, Packet packet, IClientAPI remoteClient); |
117 | 118 | ||
@@ -380,6 +381,7 @@ namespace OpenSim.Framework | |||
380 | event UUIDNameRequest OnDetachAttachmentIntoInv; | 381 | event UUIDNameRequest OnDetachAttachmentIntoInv; |
381 | event ObjectAttach OnObjectAttach; | 382 | event ObjectAttach OnObjectAttach; |
382 | event ObjectDeselect OnObjectDetach; | 383 | event ObjectDeselect OnObjectDetach; |
384 | event ObjectDrop OnObjectDrop; | ||
383 | event StartAnim OnStartAnim; | 385 | event StartAnim OnStartAnim; |
384 | event StopAnim OnStopAnim; | 386 | event StopAnim OnStopAnim; |
385 | event LinkObjects OnLinkObjects; | 387 | event LinkObjects OnLinkObjects; |