* Implementing some interfaces for aformentioned script engine. Ignore this.

This commit is contained in:
Adam Frisby
2009-03-04 01:38:22 +00:00
parent 2fa9e976a3
commit 3538eeafa2
4 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.OptionalModules.Scripting.ObjectModules
{
interface IObjectModule
{
void Add(EntityBase entity, Scene scene);
void Start();
void Stop();
void Tick();
string ClassName { get; }
bool IsShared { get; }
}
}