blob: 472dd0631479abe2adc9ad8db2eed4556895f756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Region.Environment.Scenes;
using libsecondlife;
using Key = libsecondlife.LLUUID;
namespace OpenSim.Region.ExtensionsScriptModule
{
public class ScriptInterpretedEvents
{
public delegate void OnTouchStartDelegate(Key user);
public event OnTouchStartDelegate OnTouchStart;
public void TriggerTouchStart(Key user)
{
if (OnTouchStart != null)
OnTouchStart(user);
}
}
}
|