* More removing stuff. Tortoise SVN I hate you.

This commit is contained in:
Adam Frisby
2007-06-28 08:35:41 +00:00
parent 9383fea40b
commit 17275f3ab7
4 changed files with 0 additions and 218 deletions

View File

@@ -1,31 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Region.Scenes;
using OpenSim.Framework.Console;
namespace OpenSim.Scripting
{
/// <summary>
/// Class which provides access to the world
/// </summary>
public class ScriptInfo
{
// Reference to world.eventsManager provided for convenience
public EventManager events;
// The main world
public Scene world;
// The console
public LogBase logger;
public ScriptInfo(Scene scene)
{
world = scene;
events = world.eventManager;
logger = OpenSim.Framework.Console.MainLog.Instance;
}
}
}