aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObjectAccessor.cs
blob: feddf67cd6c6ef3428c6f7e7b5ce268599316339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections.Generic;
using OpenMetaverse;

namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
    public interface IObjectAccessor : ICollection<IObject>
    {
        IObject this[int index] { get; }
        IObject this[uint index] { get; }
        IObject this[UUID index] { get; }
    }
}