diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ITerrain.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ITerrain.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ITerrain.cs b/OpenSim/Region/Environment/Interfaces/ITerrain.cs index f9ff71a..3d0169a 100644 --- a/OpenSim/Region/Environment/Interfaces/ITerrain.cs +++ b/OpenSim/Region/Environment/Interfaces/ITerrain.cs | |||
@@ -1,16 +1,16 @@ | |||
1 | using OpenSim.Framework.Interfaces; | 1 | using OpenSim.Framework.Interfaces; |
2 | 2 | ||
3 | namespace OpenSim.Region.Environment.Interfaces | 3 | namespace OpenSim.Region.Environment.Interfaces |
4 | { | 4 | { |
5 | public interface ITerrain | 5 | public interface ITerrain |
6 | { | 6 | { |
7 | bool Tainted(); | 7 | bool Tainted(); |
8 | bool Tainted(int x, int y); | 8 | bool Tainted(int x, int y); |
9 | void ResetTaint(); | 9 | void ResetTaint(); |
10 | 10 | ||
11 | void ModifyTerrain(float height, float seconds, byte brushsize, byte action, float north, float west, | 11 | void ModifyTerrain(float height, float seconds, byte brushsize, byte action, float north, float west, |
12 | IClientAPI remoteUser); | 12 | IClientAPI remoteUser); |
13 | 13 | ||
14 | void CheckHeightValues(); | 14 | void CheckHeightValues(); |
15 | float[] GetHeights1D(); | 15 | float[] GetHeights1D(); |
16 | float[,] GetHeights2D(); | 16 | float[,] GetHeights2D(); |