* Implementing some interfaces for aformentioned script engine. Ignore this.

This commit is contained in:
Adam Frisby
2009-03-04 01:38:22 +00:00
parent 2fa9e976a3
commit 3538eeafa2
4 changed files with 136 additions and 0 deletions

View File

@@ -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);
}
}