Britbot
static Britbot.Navigator.Node.Node ( ) [inline, static, private]

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();

                        //set locations
                        Node.Map[y, x].Loc = new Location(y, x);
                    }
                }
            }