forked from mirror/DotRecast
int to byte
This commit is contained in:
parent
a282a80356
commit
355a08e7ef
|
@ -31,8 +31,8 @@ namespace DotRecast.Detour.TileCache
|
|||
{
|
||||
public static class DtTileCacheBuilder
|
||||
{
|
||||
public const int DT_TILECACHE_NULL_AREA = 0;
|
||||
public const int DT_TILECACHE_WALKABLE_AREA = 63;
|
||||
public const byte DT_TILECACHE_NULL_AREA = 0;
|
||||
public const byte DT_TILECACHE_WALKABLE_AREA = 63;
|
||||
public const int DT_TILECACHE_NULL_IDX = 0xffff;
|
||||
|
||||
private static readonly int[] DirOffsetX = { -1, 0, 1, 0, };
|
||||
|
|
Loading…
Reference in New Issue