From e2d30a02446c8b5d1b8be090f4ccc1fc98d019f5 Mon Sep 17 00:00:00 2001 From: MW Date: Thu, 26 Feb 2009 21:30:12 +0000 Subject: Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. Also in that plugin it registers the IUserService with all the Scenes (as they are created). So now we can start changing over all uses of IUserService, that currently access it from the CommunicationsManager to accessing it from the Scene.RequestModuleInterface call. Once that is done we can move the UserService creation out to its own plugin and remove all references to it from the CommunicationsManager. Then we can take the next CommunicationsManager interface and repeat. --- OpenSim/Framework/IScene.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs index c400309..572d045 100644 --- a/OpenSim/Framework/IScene.cs +++ b/OpenSim/Framework/IScene.cs @@ -89,6 +89,9 @@ namespace OpenSim.Framework T RequestModuleInterface(); T[] RequestModuleInterfaces(); + void RegisterModuleInterface(M mod); + void StackModuleInterface(M mod); + void AddCommand(object module, string command, string shorthelp, string longhelp, CommandDelegate callback); } } -- cgit v1.1