mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 23:36:12 +00:00
Cleanup SRC
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user