mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Refactor IEventReceiver back into IScriptEngine
This commit is contained in:
@@ -44,7 +44,7 @@ using OpenSim.Region.ScriptEngine.Shared.ScriptBase;
|
||||
namespace OpenSim.Region.ScriptEngine.DotNetEngine
|
||||
{
|
||||
[Serializable]
|
||||
public class ScriptEngine : IRegionModule, IEventReceiver, IScriptModule
|
||||
public class ScriptEngine : IRegionModule, IScriptEngine, IScriptModule
|
||||
{
|
||||
private static readonly ILog m_log =
|
||||
LogManager.GetLogger(
|
||||
@@ -388,5 +388,20 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine
|
||||
{
|
||||
return m_ScriptManager.GetApi(itemID, name);
|
||||
}
|
||||
|
||||
public IScriptWorkItem QueueEventHandler(Object o)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetAssemblyName(UUID itemID)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
public string GetXMLState(UUID itemID)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user