mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
* Implementing some interfaces for aformentioned script engine. Ignore this.
This commit is contained in:
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user