DotRecastNetSim/src/DotRecast.Detour.TileCache/DtCompressedTileFlags.cs

8 lines
254 B
C#
Raw Normal View History

2024-09-05 16:57:28 +03:00
namespace DotRecast.Detour.TileCache
2023-10-11 17:55:37 +03:00
{
/// Flags for addTile
public class DtCompressedTileFlags
{
public const int DT_COMPRESSEDTILE_FREE_DATA = 0x01; //< Navmesh owns the tile memory and should free it. In C#, it is not used.
}
}