aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs
diff options
context:
space:
mode:
authorAdam Frisby2009-03-04 01:38:22 +0000
committerAdam Frisby2009-03-04 01:38:22 +0000
commit3538eeafa200f035b67a833c11b5050360479463 (patch)
treeb69f49f93bde8a6bb0f82395ff8e7360e088f30b /OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs
parentCONTRIBUTORS.txt cleanup (diff)
downloadopensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.zip
opensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.tar.gz
opensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.tar.bz2
opensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.tar.xz
* Implementing some interfaces for aformentioned script engine. Ignore this.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs
new file mode 100644
index 0000000..fd1cc3d
--- /dev/null
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHeightmap.cs
@@ -0,0 +1,14 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
6{
7 interface IHeightmap
8 {
9 int Height { get; }
10 int Width { get; }
11 double Get(int x, int y);
12 void Set(int x, int y, double val);
13 }
14}