forked from mirror/DotRecast
11 lines
204 B
C#
11 lines
204 B
C#
|
namespace DotRecast.Recast
|
|||
|
{
|
|||
|
public class HeightPatch
|
|||
|
{
|
|||
|
public int xmin;
|
|||
|
public int ymin;
|
|||
|
public int width;
|
|||
|
public int height;
|
|||
|
public int[] data;
|
|||
|
}
|
|||
|
}
|