* ModuleLoader: Privatized some too-public fields

* Scene: Changed name from MakeAvatarPhysical to MakeRootAgent and added ForEachClient
* SceneManager: Added ForEachScene
* Worked some on appearances.
This commit is contained in:
lbsa71
2007-10-29 11:54:31 +00:00
parent 27f003b683
commit 03d49b0217
6 changed files with 85 additions and 55 deletions

View File

@@ -310,5 +310,10 @@ namespace OpenSim.Region.Environment.Scenes
avatar = null;
return false;
}
public void ForEachScene(Action<Scene> action )
{
m_localScenes.ForEach( action );
}
}
}