aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs
blob: b4502a42b28ace0440ed945410df8d54ffec9c17 (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);
    }
}