diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/IObjectAccessor.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObjectAccessor.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObjectAccessor.cs new file mode 100644 index 0000000..feddf67 --- /dev/null +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObjectAccessor.cs | |||
@@ -0,0 +1,12 @@ | |||
1 | using System.Collections.Generic; | ||
2 | using OpenMetaverse; | ||
3 | |||
4 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | ||
5 | { | ||
6 | public interface IObjectAccessor : ICollection<IObject> | ||
7 | { | ||
8 | IObject this[int index] { get; } | ||
9 | IObject this[uint index] { get; } | ||
10 | IObject this[UUID index] { get; } | ||
11 | } | ||
12 | } \ No newline at end of file | ||