diff options
Diffstat (limited to '')
-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 | ||