From 3b9400bceaa9389489951b31322204bb26cab076 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 14 Oct 2008 14:43:46 +0000 Subject: * refactor: rename SendKiPrimitive to SendKillObject since this appears more descriptive of what it actually does --- OpenSim/Framework/IClientAPI.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 5322dda..1c6d363 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -630,7 +630,14 @@ namespace OpenSim.Framework void SendWearables(AvatarWearable[] wearables, int serial); void SendAppearance(UUID agentID, byte[] visualParams, byte[] textureEntry); void SendStartPingCheck(byte seq); - void SendKiPrimitive(ulong regionHandle, uint localID); + + /// + /// Tell the client that an object has been deleted + /// + /// + /// + void SendKillObject(ulong regionHandle, uint localID); + void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId); void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); void SendChatMessage(string message, byte type, Vector3 fromPos, string fromName, UUID fromAgentID, byte source, byte audible); -- cgit v1.1