mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 13:55:35 +08:00
Added ScriptEngine.DotNetEngine
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user