One time initializing of the Node array.
Definition at line 75 of file Node.cs.
{
for (int y = 0; y < Node.Map.GetLength(0); y++)
{
for (int x = 0; x < Node.Map.GetLength(1); x++)
{
Node.Map[y, x] = new Node();
Node.Map[y, x].Loc = new Location(y, x);
}
}
}