From 7beb8a5abb801c285d16a5b1e4d8538d0381c671 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sat, 3 Jan 2009 20:45:33 +0000 Subject: Plumb the remaining dwell packets --- OpenSim/Framework/IClientAPI.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 79311d5..cb4af37 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -422,6 +422,8 @@ namespace OpenSim.Framework public delegate void EventGodDelete(uint eventID, UUID queryID, string queryText, uint queryFlags, int queryStart, IClientAPI client); + public delegate void ParcelDwellRequest(int localID, IClientAPI client); + #endregion public struct DirPlacesReplyData @@ -741,6 +743,8 @@ namespace OpenSim.Framework event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; event EventGodDelete OnEventGodDelete; + event ParcelDwellRequest OnParcelDwellRequest; + // void ActivateGesture(UUID assetId, UUID gestureId); /// @@ -1082,6 +1086,8 @@ namespace OpenSim.Framework void SendAvatarPicksReply(UUID targetID, Dictionary picks); void SendAvatarClassifiedReply(UUID targetID, Dictionary classifieds); + void SendParcelDwellReply(int localID, UUID parcelID, float dwell); + void KillEndDone(); bool AddGenericPacketHandler(string MethodName, GenericMessage handler); -- cgit v1.1