Files
opensim/OpenSim/Grid/ScriptServer/RemotingObject.cs
Tedd Hansen 260145a7e6 Dynamic loading of ScriptEngine in ScriptServer
ScriptServer event pipe (OpenSim->ScriptServer->ScriptEngine) should in theory be done
2008-01-09 17:13:02 +00:00

20 lines
597 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Region.Environment.Interfaces;
using OpenSim.Region.ScriptEngine.Common;
namespace OpenSim.Grid.ScriptServer
{
public class RemotingObject : MarshalByRefObject, ScriptServerInterfaces.ServerRemotingObject
{
// This object will be exposed over remoting. It is a singleton, so it exists only in as one instance.
ScriptServerInterfaces.RemoteEvents ScriptServerInterfaces.ServerRemotingObject.Events()
{
return ScriptServerMain.Engine.EventManager();
}
}
}