aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs')
-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 cc02268..f0d600a 100644
--- a/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
+++ b/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
@@ -26,7 +26,6 @@
26* 26*
27*/ 27*/
28 28
29using System;
30namespace OpenSim.Region.Environment.Interfaces 29namespace OpenSim.Region.Environment.Interfaces
31{ 30{
32 public interface ITerrainChannel 31 public interface ITerrainChannel
@@ -34,5 +33,6 @@ namespace OpenSim.Region.Environment.Interfaces
34 int Height { get; } 33 int Height { get; }
35 double this[int x, int y] { get; set; } 34 double this[int x, int y] { get; set; }
36 int Width { get; } 35 int Width { get; }
36 float[] GetFloatsSerialised();
37 } 37 }
38} 38}