aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces
diff options
context:
space:
mode:
authorAdam Frisby2008-02-14 17:23:29 +0000
committerAdam Frisby2008-02-14 17:23:29 +0000
commite1d9275610feeba79ffec93640af77876c6741aa (patch)
tree0db10fb4a1bbd66bc0267a910f3291ae3cb88a6b /OpenSim/Region/Environment/Interfaces
parentAdded "better" multi thread handling to AvatarFactoryModule, which uses Event... (diff)
downloadopensim-SC_OLD-e1d9275610feeba79ffec93640af77876c6741aa.zip
opensim-SC_OLD-e1d9275610feeba79ffec93640af77876c6741aa.tar.gz
opensim-SC_OLD-e1d9275610feeba79ffec93640af77876c6741aa.tar.bz2
opensim-SC_OLD-e1d9275610feeba79ffec93640af77876c6741aa.tar.xz
* Fixed accessibility problem on ITerrainChannel
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r--OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs b/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
index 9f70b98..eb5b0a6 100644
--- a/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
+++ b/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
@@ -1,7 +1,7 @@
1using System; 1using System;
2namespace OpenSim.Region.Environment.Interfaces 2namespace OpenSim.Region.Environment.Interfaces
3{ 3{
4 interface ITerrainChannel 4 public interface ITerrainChannel
5 { 5 {
6 int Height { get; } 6 int Height { get; }
7 double this[int x, int y] { get; set; } 7 double this[int x, int y] { get; set; }