Added ScriptEngine.DotNetEngine

This commit is contained in:
Tedd Hansen
2007-08-08 14:05:13 +00:00
parent ef0fea268f
commit 2a0e157985
29 changed files with 8188 additions and 0 deletions

View File

@@ -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;
}
}