Ejemplo n.º 1
0
    void MoveDown()
    {
        GridLocation down = GridController.Below(location);

        if (down != null && GridController.CanWalkOn(down))
        {
            nextlocation = down;
        }
    }