* Added sample event to ScriptInterpretedEvents

afrisby
Adam Frisby 2007-07-13 20:29:51 +00:00
parent e14ef63113
commit e6dc575bc3
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,9 @@ using Key = libsecondlife.LLUUID;
namespace OpenSim.Region.Scripting
{
class ScriptInterpretedEvents
public class ScriptInterpretedEvents
{
public delegate void OnTouchStartDelegate(Key user);
public event OnTouchStartDelegate OnTouchStart;
}
}