aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.World/Avatar.Client.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/OpenSim.World/Avatar.Client.cs48
1 files changed, 0 insertions, 48 deletions
diff --git a/OpenSim/OpenSim.World/Avatar.Client.cs b/OpenSim/OpenSim.World/Avatar.Client.cs
deleted file mode 100644
index c180b36..0000000
--- a/OpenSim/OpenSim.World/Avatar.Client.cs
+++ /dev/null
@@ -1,48 +0,0 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using libsecondlife.Packets;
5
6namespace OpenSim.Region
7{
8 partial class Avatar
9 {
10 private List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock> updateList = new List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock>();
11 private List<Entity> interestList = new List<Entity>();
12
13 /// <summary>
14 /// Forwards a packet to the Avatar's client (IClientAPI object).
15 /// Note: Quite likely to be obsolete once the Client API is finished
16 /// </summary>
17 /// <param name="packet"></param>
18 public void SendPacketToViewer(Packet packet)
19 {
20 this.ControllingClient.OutPacket(packet);
21 }
22
23 /// <summary>
24 ///
25 /// </summary>
26 /// <param name="terseBlock"></param>
27 public void AddTerseUpdateToViewersList(ImprovedTerseObjectUpdatePacket.ObjectDataBlock terseBlock)
28 {
29
30 }
31
32 /// <summary>
33 ///
34 /// </summary>
35 public void SendUpdateListToViewer()
36 {
37
38 }
39
40 /// <summary>
41 ///
42 /// </summary>
43 private void UpdateInterestList()
44 {
45
46 }
47 }
48}