aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedEvents.cs
blob: 774318667681affad6572d8e933eaee87515cce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Region.Environment.Scenes;
using libsecondlife;
using Key = libsecondlife.LLUUID;

namespace OpenSim.Region.Scripting
{

    public class ScriptInterpretedEvents
    {
        public delegate void OnTouchStartDelegate(Key user);
        public event OnTouchStartDelegate OnTouchStart;
    }
}