DotRecastNetSim/src/DotRecast.Detour/PolyQuery.cs

7 lines
132 B
C#
Raw Normal View History

2023-03-16 19:09:10 +03:00
namespace DotRecast.Detour
{
2023-03-16 19:48:49 +03:00
public interface PolyQuery
{
void process(MeshTile tile, Poly poly, long refs);
}
2023-03-16 19:09:10 +03:00
}