mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-20 19:22:48 +00:00
16 lines
205 B
Java
16 lines
205 B
Java
package com.volmit.iris.util;
|
|
|
|
import lombok.Value;
|
|
|
|
@Value
|
|
public class CarveResult
|
|
{
|
|
private final int surface;
|
|
private final int ceiling;
|
|
|
|
public int getHeight()
|
|
{
|
|
return ceiling - surface;
|
|
}
|
|
}
|