blob: 50b2a5edfcd116c260bcf205d928e94750ef3363 (
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; }
}
}
|