12 lines
229 B
Java

package org.atriaSoft.gameEngine.map;
public class Voxel {
public int type = VoxelType.NATIVE_UNKNOWN;
public boolean active = true;
public Voxel(int type, boolean active) {
this.type = type;
this.active = active;
}
}