Skip to content

Commit 03e8eb5

Browse files
authored
Merge pull request #86 from NosCoreIO/RenameLength
fix #84 rename length
2 parents 8ca19f0 + 8eb7ab1 commit 03e8eb5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/NosCore.PathFinder/Interfaces/IMapGrid.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ namespace NosCore.PathFinder.Interfaces
99
public interface IMapGrid
1010
{
1111
public short Width { get; }
12-
public short Length { get; }
12+
public short Height { get; }
1313
public byte this[short x, short y] { get; }
1414
bool IsWalkable(short currentX, short currentY);
1515
}
16-
}
16+
}

0 commit comments

Comments
 (0)