mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* Added TriggerTouchStart function to Interpreted Events API
* One less compiler warning. Heh.
This commit is contained in:
@@ -12,5 +12,12 @@ namespace OpenSim.Region.Scripting
|
||||
{
|
||||
public delegate void OnTouchStartDelegate(Key user);
|
||||
public event OnTouchStartDelegate OnTouchStart;
|
||||
|
||||
|
||||
public void TriggerTouchStart(Key user)
|
||||
{
|
||||
if (OnTouchStart != null)
|
||||
OnTouchStart(user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user