################################################################################
################################################################################
#   LABY
################################################################################
################################################################################

from ClassePile import *
import numpy as np, numpy.random as rd, matplotlib.pyplot as plt

###############################################################################
#   LABYRINTHE
################################################################################

# 2 : mur
# 0 : couloir
# 1 : couloir visité

laby=[[0,0,2,2,2,2,2], [0,2,2,0,0,2,0], [0,0,0,2,0,0,2],
    [0,2,0,2,2,0,0], [2,0,0,0,2,0,2], [2,0,2,0,0,0,2],
    [2,2,2,2,2,2,2]]

plt.imshow(np.array(laby),cmap='Greys',interpolation='nearest')
plt.show()
