OpenSim
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
TerrainModifierData.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace OpenSim.Region.CoreModules.World.Terrain
4 {
5  public struct TerrainModifierData
6  {
7  public float elevation;
8  public string shape;
9  public int x0;
10  public int y0;
11  public int dx;
12  public int dy;
13  public string bevel;
14  public float bevelevation;
15  }
16 }
17