mirror of
https://github.com/opensim/opensim.git
synced 2026-05-27 20:35:59 +08:00
15 lines
328 B
C#
15 lines
328 B
C#
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);
|
|
}
|
|
}
|