Changed IClientNetworkServer.AddScene method from void AddScene(Scene x) to void AddScene(IScene x). As there should be no need for the client view to have a reference to Scene. IScene should be all it needs.

This commit is contained in:
MW
2009-03-02 14:42:01 +00:00
parent 1dcbea0144
commit ff76102644
2 changed files with 2 additions and 3 deletions

View File

@@ -109,7 +109,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
return x == m_location;
}
public void AddScene(Scene x)
public void AddScene(IScene x)
{
LocalScene = x;
}