From 449bebf16e424b8af5fc1768e880ae64c872773d Mon Sep 17 00:00:00 2001 From: nlin Date: Sat, 4 Apr 2009 13:13:14 +0000 Subject: Preliminary work to support ObjectSpin* packets when user invokes CTRL / SHIFT / MOUSE DRAG on a physical object Addresses Mantis #3381 --- OpenSim/Framework/IClientAPI.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'OpenSim/Framework') 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 UUID objectID, Vector3 offset, Vector3 grapPos, IClientAPI remoteClient, List surfaceArgs ); + public delegate void SpinStart(UUID objectID, IClientAPI remoteClient); + public delegate void SpinUpdate(UUID objectID, Quaternion rotation, IClientAPI remoteClient); + public delegate void SpinStop(UUID objectID, IClientAPI remoteClient); + public delegate void ParcelAccessListRequest( UUID agentID, UUID sessionID, uint flags, int sequenceID, int landLocalID, IClientAPI remote_client); -- cgit v1.1