* @param name Le nom de la map (lien vers le fichier)
* @throws SlickException
*/
public Map(String name) throws SlickException {
blocs = new ArrayList<>();
map = new TiledMapPlus(name);
pnj = map.getObjectGroup("PNJ");
for (GroupObject e : pnj.getObjects()) {
System.out.println(e.name + " (" + e.type + ") X : " + e.x + "Y :" + e.y);
System.out.println("Index : " + e.index + " GID : " + e.gid + " Height : " + e.height + " Width : " + e.width);
if (e.props != null) {