mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
Renamed the new Directories. (removed the "-Source" from the end of them)
This commit is contained in:
33
OpenSim/OpenSim.RegionServer/world/Avatar.Client.cs
Normal file
33
OpenSim/OpenSim.RegionServer/world/Avatar.Client.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using libsecondlife.Packets;
|
||||
|
||||
namespace OpenSim.world
|
||||
{
|
||||
partial class Avatar
|
||||
{
|
||||
private List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock> updateList = new List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock>();
|
||||
private List<Entity> interestList = new List<Entity>();
|
||||
|
||||
public void SendPacketToViewer(Packet packet)
|
||||
{
|
||||
this.ControllingClient.OutPacket(packet);
|
||||
}
|
||||
|
||||
public void AddTerseUpdateToViewersList(ImprovedTerseObjectUpdatePacket.ObjectDataBlock terseBlock)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void SendUpdateListToViewer()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void UpdateInterestList()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user