blob: eb5b0a6a135342ffc7ea6ead46f1e5b25cc17f39 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System;
namespace OpenSim.Region.Environment.Interfaces
{
public interface ITerrainChannel
{
int Height { get; }
double this[int x, int y] { get; set; }
int Width { get; }
}
}
|