From f7b51d63a87a6703d7cb8f376d1f3f7ec6ede8a0 Mon Sep 17 00:00:00 2001
From: MW
Date: Wed, 25 Apr 2007 13:03:48 +0000
Subject: Small clean up of files and directories

---
 OpenSim.RegionServer/world/SurfacePatch.cs | 22 ----------------------
 1 file changed, 22 deletions(-)
 delete mode 100644 OpenSim.RegionServer/world/SurfacePatch.cs

(limited to 'OpenSim.RegionServer/world/SurfacePatch.cs')

diff --git a/OpenSim.RegionServer/world/SurfacePatch.cs b/OpenSim.RegionServer/world/SurfacePatch.cs
deleted file mode 100644
index 71e4116..0000000
--- a/OpenSim.RegionServer/world/SurfacePatch.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace OpenSim.world
-{
-    public class SurfacePatch
-    {
-    	public float[] HeightMap;
-
-	public SurfacePatch() {
-		HeightMap = new float[16*16];
-		
-		int xinc;
-            	int yinc;
-		for(xinc=0; xinc<16; xinc++) for(yinc=0; yinc<16; yinc++) {
-			HeightMap[xinc+(yinc*16)]=100.0f;
-		}
-					
-	}
-    }
-}
-- 
cgit v1.1