aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs
blob: fd1cc3d1bd8c67d32755a906ddef8c562152ec3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
    interface IHeightmap
    {
        int Height { get; }
        int Width { get; }
        double Get(int x, int y);
        void Set(int x, int y, double val);
    }
}