mirror of
https://github.com/opensim/opensim.git
synced 2026-06-09 05:05:51 +08:00
17 lines
374 B
C#
17 lines
374 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;
|
|
}
|
|
}
|