Temp fixes

This commit is contained in:
Daniel Mills
2020-11-01 09:46:56 -05:00
parent b87153a445
commit 7a7fee1d8a
12 changed files with 74 additions and 26 deletions

View File

@@ -13,4 +13,9 @@ public class CaveResult
this.floor = floor;
this.ceiling = ceiling;
}
public boolean isWithin(int v)
{
return v > floor || v < ceiling;
}
}