aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-05-26 16:16:48 +0000
committerCharles Krinke2008-05-26 16:16:48 +0000
commited717ec181ef9946fbb5182d59e9f051ae1478ac (patch)
treef5357655e40c618338756937fecd5092fbb1c656 /OpenSim/Framework/IClientAPI.cs
parentdisabling m_log again. (diff)
downloadopensim-SC_OLD-ed717ec181ef9946fbb5182d59e9f051ae1478ac.zip
opensim-SC_OLD-ed717ec181ef9946fbb5182d59e9f051ae1478ac.tar.gz
opensim-SC_OLD-ed717ec181ef9946fbb5182d59e9f051ae1478ac.tar.bz2
opensim-SC_OLD-ed717ec181ef9946fbb5182d59e9f051ae1478ac.tar.xz
Thank you kindly, Melanie for a patch for script reset
that creates the event handler chain ready to hook by script engines
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
1 files changed, 2 insertions, 0 deletions
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
640 public delegate void EstateBlueBoxMessageRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID sessionID, string senderName, string message); 640 public delegate void EstateBlueBoxMessageRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID sessionID, string senderName, string message);
641 public delegate void EstateDebugRegionRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, bool scripted, bool collisionEvents, bool physics); 641 public delegate void EstateDebugRegionRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, bool scripted, bool collisionEvents, bool physics);
642 public delegate void EstateTeleportOneUserHomeRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID prey); 642 public delegate void EstateTeleportOneUserHomeRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID prey);
643 public delegate void ScriptReset(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID);
643 644
644 645
645 public interface IClientAPI 646 public interface IClientAPI
@@ -836,6 +837,7 @@ namespace OpenSim.Framework
836 event UUIDNameRequest OnUUIDGroupNameRequest; 837 event UUIDNameRequest OnUUIDGroupNameRequest;
837 838
838 event RequestObjectPropertiesFamily OnObjectGroupRequest; 839 event RequestObjectPropertiesFamily OnObjectGroupRequest;
840 event ScriptReset OnScriptReset;
839 841
840 [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")] 842 [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")]
841 void OutPacket(Packet newPack, ThrottleOutPacketType packType); 843 void OutPacket(Packet newPack, ThrottleOutPacketType packType);