aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.RegionServer/world/scripting/Script.cs
blob: 48c18ff999331b1e7d0a8a83ed80fee24c92a3ea (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.RegionServer.world.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;
    }
}