* Added Java support back into Sugilite (although it still needs a calling host to be added).

This commit is contained in:
Adam Frisby
2007-07-05 00:09:45 +00:00
parent beb3073bec
commit 3c46e5b170
31 changed files with 2241 additions and 157 deletions

View File

@@ -28,7 +28,7 @@
using OpenSim.Framework.Console;
using OpenSim.Region.Environment.Scenes;
namespace OpenSim.Region.Enviorment.Scripting
namespace OpenSim.Region.Environment.Scripting
{
/// <summary>
/// Class which provides access to the world
@@ -44,11 +44,15 @@ namespace OpenSim.Region.Enviorment.Scripting
// The console
public LogBase logger;
// API Access
public ScriptAPI api;
public ScriptInfo(Scene scene)
{
world = scene;
events = world.eventManager;
logger = MainLog.Instance;
api = new ScriptAPI(scene);
}
}
}