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