aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/scripting/ScriptAPI.cs
blob: fd601cb556c6e6a09c0b2d5dae518e17d19dd2d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Text;

using OpenSim.Region.Environment.Scenes;

namespace OpenSim.Region.Environment.Scripting
{
    // This class is to be used for engines which may not be able to access the Scene directly.
    // Scene access is preffered, but obviously not possible on some non-.NET languages.
    public class ScriptAPI
    {
        Scene scene;

        public ScriptAPI(Scene world)
        {
            scene = world;
        }

        public Object CallMethod(String method, Object[] args)
        {
            return null;
        }
    }
}