DotRecastNetSim/src/DotRecast.Recast/RcHeightPatch.cs

11 lines
206 B
C#
Raw Normal View History

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