aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.World/scripting/Script.cs
blob: c0c2c0c59fc6577756ea3fe61fbb47b895b1283f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;

namespace OpenSim.Region.Scripting
{
    public class Script
    {
        private LLUUID m_scriptId;        
        public virtual LLUUID ScriptId
        {
            get
            {
                return m_scriptId;
            }
        }

        public Script( LLUUID scriptId )
        {
            m_scriptId = scriptId;
        }
        
        public ScriptEventHandler OnFrame;
    }
}