aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs
blob: 46edec3504fddbca37fd3e8a40ce26e68a29397f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.ApplicationPlugins.ScriptEngine.Components;

namespace OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL
{
    public class Commands_LSL : CommandBase
    {
        public override void Start()
        {
        }

        public override void Close()
        {
        }
    }
}