Files
artloglaby/java/org/artisanlogiciel/games/minetest/Node.java
philippe lhardy 8211147b28 minetest worledit .we format export
- harcoded generation of lua content of .we export
- export something, but not yet correct ( walls are points ... )
2020-11-03 17:33:25 +01:00

32 lines
491 B
Java

package org.artisanlogiciel.games.minetest;
public class Node {
int x;
int y;
int z;
String material;
public Node(int x, int y, int z, String material) {
this.x = x;
this.y = y;
this.z = z;
this.material = material;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public int getZ() {
return z;
}
public String getMaterial() {
return material;
}
}