19 lines
373 B
C#
19 lines
373 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|