DotRecastNetSim/src/DotRecast.Recast/HeightPatch.cs

11 lines
204 B
C#
Raw Normal View History

2023-05-07 06:36:27 +03:00
namespace DotRecast.Recast
{
public class HeightPatch
{
public int xmin;
public int ymin;
public int width;
public int height;
public int[] data;
}
}