aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs
blob: 84d602ad4a2eb721895f2da14d6c595992ead1c9 (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
{
    public interface IHeightmap
    {
        int Height { get; }
        int Width { get; }
        double Get(int x, int y);
        void Set(int x, int y, double val);
    }
}