Skip to content
Sergej Görzen edited this page Oct 10, 2023 · 3 revisions
enum EdgeDirection : sbyte
{
    Invalid = -1, // Blocked Cell
    North = 0,
    East = 1,
    South = 2,
    West = 3,
}
Clone this wiki locally