* Added sample event to ScriptInterpretedEvents

This commit is contained in:
Adam Frisby
2007-07-13 20:29:51 +00:00
parent e14ef63113
commit e6dc575bc3

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;
}
}