use of com.irtimaled.bbor.common.models.BoundingBoxCuboid in project BoundingBoxOutlineReloaded by irtimaled.
the class CustomBoxProvider method add.
public static void add(Coords minCoords, Coords maxCoords) {
DimensionId dimensionId = Player.getDimensionId();
int cacheKey = getHashKey(minCoords, maxCoords);
BoundingBoxCuboid cuboid = BoundingBoxCuboid.from(minCoords, maxCoords, BoundingBoxType.Custom);
getCache(dimensionId).put(cacheKey, cuboid);
}
Aggregations