- and fix some bug : max is within range ( perhaps not as many as those added ...) - quick hack in CharProvider to skip spaces ... ( bad it applies to strings too ...)
27 lines
497 B
Java
27 lines
497 B
Java
package org.artisanlogiciel.games.maze;
|
|
|
|
import org.artisanlogiciel.games.minetest.Range;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public class LabyLayers
|
|
extends Range
|
|
{
|
|
HashMap<Integer,LabyModel> layers = new HashMap<>();
|
|
|
|
public LabyLayers()
|
|
{
|
|
super();
|
|
}
|
|
public void addLabyModel(int z, LabyModel model)
|
|
{
|
|
updateBounds(z);
|
|
layers.put(new Integer(z), model);
|
|
}
|
|
|
|
public LabyModel getLayer(int z)
|
|
{
|
|
return layers.get(new Integer(z));
|
|
}
|
|
}
|