Files
philippe lhardy 52a2d3f1e3 read a .we minetest schema
- use ground has maze walls
2020-11-04 22:12:17 +01:00

26 lines
451 B
Java

package org.artisanlogiciel.games.minetest;
import java.util.HashMap;
public class Raw
extends Range {
// y is index
public HashMap<Integer,Node> nodes;
public Raw() {
super();
nodes = new HashMap<>();
}
public void addNode(Integer y, Node node)
{
updateBounds(y.intValue());
nodes.put(y,node);
}
public Node getNode( int y)
{
return nodes.get(new Integer(y));
}
}