From ed717ec181ef9946fbb5182d59e9f051ae1478ac Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Mon, 26 May 2008 16:16:48 +0000 Subject: Thank you kindly, Melanie for a patch for script reset that creates the event handler chain ready to hook by script engines --- OpenSim/Framework/IClientAPI.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 7fb8091..48b4eb3 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -640,6 +640,7 @@ namespace OpenSim.Framework public delegate void EstateBlueBoxMessageRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID sessionID, string senderName, string message); public delegate void EstateDebugRegionRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, bool scripted, bool collisionEvents, bool physics); public delegate void EstateTeleportOneUserHomeRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID prey); + public delegate void ScriptReset(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID); public interface IClientAPI @@ -836,6 +837,7 @@ namespace OpenSim.Framework event UUIDNameRequest OnUUIDGroupNameRequest; event RequestObjectPropertiesFamily OnObjectGroupRequest; + event ScriptReset OnScriptReset; [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")] void OutPacket(Packet newPack, ThrottleOutPacketType packType); -- cgit v1.1