mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 19:35:41 +08:00
16 lines
383 B
C#
16 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.ScriptEngine.DotNetEngine
|
|
{
|
|
public class TempWorldInterfaceEventDelegates
|
|
{
|
|
public delegate void touch_start(string ObjectID);
|
|
}
|
|
public interface TempWorldInterface
|
|
{
|
|
event TempWorldInterfaceEventDelegates.touch_start touch_start;
|
|
}
|
|
}
|