aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/tectech/util/FaceVisibility.java
blob: da981a98d8ab2120789ebd0c6fd2ec2372a83800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package tectech.util;

public class FaceVisibility {

    public boolean front = true, back = true;
    public boolean left = true, right = true;
    public boolean top = true, bottom = true;

    public boolean isEntireObscured() {
        return !front && !back && !left && !right && !top && !bottom;
    }
}