... and here's the second part...

This commit is contained in:
lbsa71
2007-08-06 12:54:58 +00:00
parent 74cd26b722
commit ea980ca928
44 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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;
public void TriggerTouchStart(Key user)
{
if (OnTouchStart != null)
OnTouchStart(user);
}
}
}