From f8acdeb437ff18762399c519e2416aceb2149609 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Mon, 6 Oct 2008 00:00:55 +0000 Subject: * Green dots on the mainmap for avatar. * Initial implementation * You'll only be able to seen green dots on regions on the map that have been updated. --- OpenSim/Framework/IClientAPI.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index c0d133e..7095387 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -310,6 +310,9 @@ namespace OpenSim.Framework public delegate void TerrainUnacked(IClientAPI remoteClient, int patchX, int patchY); public delegate void DirPlacesQuery(IClientAPI remoteClient, UUID queryID, string queryText, int queryFlags, int category, string simName, int queryStart); + + public delegate void MapItemRequest(IClientAPI remoteClient, uint flags, uint EstateID, bool godlike, uint itemtype, ulong regionhandle); + #endregion public struct DirPlacesReplyData @@ -546,6 +549,9 @@ namespace OpenSim.Framework event DirPlacesQuery OnDirPlacesQuery; + event MapItemRequest OnMapItemRequest; + + // void ActivateGesture(UUID assetId, UUID gestureId); // [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")] @@ -775,6 +781,9 @@ namespace OpenSim.Framework void SendScriptTeleportRequest(string objName, string simName, Vector3 pos, Vector3 lookAt); void SendDirPlacesReply(UUID queryID, DirPlacesReplyData[] data); + + void SendMapItemReply(mapItemReply[] replies, uint mapitemtype, uint flags); + void KillEndDone(); } } -- cgit v1.1