From fe46b045f75dec5ecdd0a29273c70df3e6ea540e Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 21 May 2007 16:06:58 +0000 Subject: Start of a redesign of SimClient (now renamed ClientView)/World/Avatar/Prim , switching to a event based system (World/Avatar register as event handlers). It is possible that I've broke something with this commit but it doesn't matter as I'll just hide and no one will find me. --- OpenSim.RegionServer/world/WorldBase.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim.RegionServer/world/WorldBase.cs') diff --git a/OpenSim.RegionServer/world/WorldBase.cs b/OpenSim.RegionServer/world/WorldBase.cs index b8c086d..edc5518 100644 --- a/OpenSim.RegionServer/world/WorldBase.cs +++ b/OpenSim.RegionServer/world/WorldBase.cs @@ -20,7 +20,7 @@ namespace OpenSim.world public class WorldBase { public Dictionary Entities; - protected Dictionary m_clientThreads; + protected Dictionary m_clientThreads; protected ulong m_regionHandle; protected string m_regionName; protected InventoryCache _inventoryCache; @@ -90,7 +90,7 @@ namespace OpenSim.world /// Send the region heightmap to the client /// /// Client to send to - public virtual void SendLayerData(SimClient RemoteClient) + public virtual void SendLayerData(ClientView RemoteClient) { try { @@ -122,7 +122,7 @@ namespace OpenSim.world /// Patch coordinate (x) 0..16 /// Patch coordinate (y) 0..16 /// The client to send to - public void SendLayerData(int px, int py, SimClient RemoteClient) + public void SendLayerData(int px, int py, ClientView RemoteClient) { try { @@ -148,7 +148,7 @@ namespace OpenSim.world /// Add a new Agent's avatar /// /// - public virtual void AddViewerAgent(SimClient agentClient) + public virtual void AddViewerAgent(ClientView agentClient) { } @@ -157,7 +157,7 @@ namespace OpenSim.world /// Remove a Agent's avatar /// /// - public virtual void RemoveViewerAgent(SimClient agentClient) + public virtual void RemoveViewerAgent(ClientView agentClient) { } -- cgit v1.1