mirror of
https://github.com/opensim/opensim.git
synced 2026-05-26 03:45:36 +08:00
17 lines
390 B
C#
17 lines
390 B
C#
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;
|
|
}
|
|
}
|