EXPERIMENTAL: Early commit of new Script Engine Component System

This commit is contained in:
Tedd Hansen
2008-09-21 00:03:13 +00:00
parent a8785f5b2c
commit 752d3f3879
28 changed files with 1652 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.ApplicationPlugins.ScriptEngine.Components;
namespace OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL
{
public class Commands_OSSL: CommandBase
{
public override void Start()
{
}
public override void Close()
{
}
}
}