aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/LSOEngine/LSOScript.cs
blob: e87bec8591fa1e26743495f21812633c04397574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using OpenSim.Region.ScriptEngine.LSOEngine.LSO;

namespace OpenSim.Region.ScriptEngine.LSOEngine
{
    /// <summary>
    /// This class encapsulated an LSO file and contains execution-specific data
    /// </summary>
    public class LSOScript
    {
        private byte[] LSOCode = new byte[1024 * 16];              // Contains the LSO-file
        //private System.IO.MemoryStream LSOCode = new MemoryStream(1024 * 16);

        public void Execute(LSO_Enums.Event_Mask_Values Event, params object[] param)
        {
            
        }
    }
}