aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.World/Avatar.Client.cs
diff options
context:
space:
mode:
authorMW2007-06-10 12:25:39 +0000
committerMW2007-06-10 12:25:39 +0000
commitcb624a4d4586de1b66b646a2d04c56bb988f921e (patch)
tree9285b97f88ad23fa59d056c4774377a68fb49033 /OpenSim/OpenSim.World/Avatar.Client.cs
parentMore World to Region transformation. (diff)
downloadopensim-SC_OLD-cb624a4d4586de1b66b646a2d04c56bb988f921e.zip
opensim-SC_OLD-cb624a4d4586de1b66b646a2d04c56bb988f921e.tar.gz
opensim-SC_OLD-cb624a4d4586de1b66b646a2d04c56bb988f921e.tar.bz2
opensim-SC_OLD-cb624a4d4586de1b66b646a2d04c56bb988f921e.tar.xz
Renamed folder
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}