diff options
author | nlin | 2009-04-04 13:13:14 +0000 |
---|---|---|
committer | nlin | 2009-04-04 13:13:14 +0000 |
commit | 449bebf16e424b8af5fc1768e880ae64c872773d (patch) | |
tree | ccdc1b4ac6817d44e82a99061b522888a15fb28a /OpenSim/Framework | |
parent | * Changed IPersistence interface so that passing the MRMBase is unessecary. (diff) | |
download | opensim-SC_OLD-449bebf16e424b8af5fc1768e880ae64c872773d.zip opensim-SC_OLD-449bebf16e424b8af5fc1768e880ae64c872773d.tar.gz opensim-SC_OLD-449bebf16e424b8af5fc1768e880ae64c872773d.tar.bz2 opensim-SC_OLD-449bebf16e424b8af5fc1768e880ae64c872773d.tar.xz |
Preliminary work to support ObjectSpin* packets when user invokes CTRL / SHIFT / MOUSE DRAG on a physical object
Addresses Mantis #3381
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 8d6ca7d..79fb763 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -156,6 +156,10 @@ namespace OpenSim.Framework | |||
156 | UUID objectID, Vector3 offset, Vector3 grapPos, IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs | 156 | UUID objectID, Vector3 offset, Vector3 grapPos, IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs |
157 | ); | 157 | ); |
158 | 158 | ||
159 | public delegate void SpinStart(UUID objectID, IClientAPI remoteClient); | ||
160 | public delegate void SpinUpdate(UUID objectID, Quaternion rotation, IClientAPI remoteClient); | ||
161 | public delegate void SpinStop(UUID objectID, IClientAPI remoteClient); | ||
162 | |||
159 | public delegate void ParcelAccessListRequest( | 163 | public delegate void ParcelAccessListRequest( |
160 | UUID agentID, UUID sessionID, uint flags, int sequenceID, int landLocalID, IClientAPI remote_client); | 164 | UUID agentID, UUID sessionID, uint flags, int sequenceID, int landLocalID, IClientAPI remote_client); |
161 | 165 | ||