wall half closure control + layers

- add onewaywall option to create a wall if there is not step back
- add layers of maze
- load minetest scheme .we with onewall option
This commit is contained in:
philippe lhardy
2020-11-05 19:50:42 +01:00
parent 52a2d3f1e3
commit bf918333bf
5 changed files with 90 additions and 20 deletions

View File

@@ -0,0 +1,25 @@
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)
{
layers.put(new Integer(z), model);
}
public LabyModel getLayer(int z)
{
return layers.get(new Integer(z));
}
}