From b898914715da7559c6b32f911c5eea3150a0dfef Mon Sep 17 00:00:00 2001 From: MW Date: Sun, 10 Jun 2007 12:31:16 +0000 Subject: part two of the folder renaming fix. --- OpenSim/OpenSim.Region/Avatar.Client.cs | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 OpenSim/OpenSim.Region/Avatar.Client.cs (limited to 'OpenSim/OpenSim.Region/Avatar.Client.cs') diff --git a/OpenSim/OpenSim.Region/Avatar.Client.cs b/OpenSim/OpenSim.Region/Avatar.Client.cs new file mode 100644 index 0000000..c180b36 --- /dev/null +++ b/OpenSim/OpenSim.Region/Avatar.Client.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Text; +using libsecondlife.Packets; + +namespace OpenSim.Region +{ + partial class Avatar + { + private List updateList = new List(); + private List interestList = new List(); + + /// + /// Forwards a packet to the Avatar's client (IClientAPI object). + /// Note: Quite likely to be obsolete once the Client API is finished + /// + /// + public void SendPacketToViewer(Packet packet) + { + this.ControllingClient.OutPacket(packet); + } + + /// + /// + /// + /// + public void AddTerseUpdateToViewersList(ImprovedTerseObjectUpdatePacket.ObjectDataBlock terseBlock) + { + + } + + /// + /// + /// + public void SendUpdateListToViewer() + { + + } + + /// + /// + /// + private void UpdateInterestList() + { + + } + } +} -- cgit v1.1