aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/TempWorldInterface.cs
blob: 6ba6c07b718820f681541c2b31b38f09757813eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
    }
}