aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie2011-11-06 20:38:07 +0000
committerMelanie2011-11-06 20:38:07 +0000
commitc7dd7b13a2058fa6855e2e78f1dbb83e9a806f95 (patch)
tree2208d841ddd01013d590845f306d2719ecf96503 /OpenSim/Framework/IClientAPI.cs
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC_OLD-c7dd7b13a2058fa6855e2e78f1dbb83e9a806f95.zip
opensim-SC_OLD-c7dd7b13a2058fa6855e2e78f1dbb83e9a806f95.tar.gz
opensim-SC_OLD-c7dd7b13a2058fa6855e2e78f1dbb83e9a806f95.tar.bz2
opensim-SC_OLD-c7dd7b13a2058fa6855e2e78f1dbb83e9a806f95.tar.xz
Convert SendKillObject to take a list of uint rather than sending one
packet per prim. More to come as we change to make use of this.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 1be92ff..475fc01 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -1046,7 +1046,7 @@ namespace OpenSim.Framework
1046 /// </summary> 1046 /// </summary>
1047 /// <param name="regionHandle"></param> 1047 /// <param name="regionHandle"></param>
1048 /// <param name="localID"></param> 1048 /// <param name="localID"></param>
1049 void SendKillObject(ulong regionHandle, uint localID); 1049 void SendKillObject(ulong regionHandle, List<uint> localID);
1050 1050
1051 void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); 1051 void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs);
1052 void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); 1052 void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args);