Cleanup SRC

This commit is contained in:
Daniel Mills
2021-07-14 02:34:13 -04:00
parent f29015426f
commit 6ca6fc6989
605 changed files with 53283 additions and 64305 deletions

View File

@@ -3,19 +3,16 @@ package com.volmit.iris.util;
import lombok.Data;
@Data
public class CaveResult
{
private int floor;
private int ceiling;
public class CaveResult {
private int floor;
private int ceiling;
public CaveResult(int floor, int ceiling)
{
this.floor = floor;
this.ceiling = ceiling;
}
public CaveResult(int floor, int ceiling) {
this.floor = floor;
this.ceiling = ceiling;
}
public boolean isWithin(int v)
{
return v > floor || v < ceiling;
}
public boolean isWithin(int v) {
return v > floor || v < ceiling;
}
}