package rabbitescape.engine.util; public class Dimension { public final int width; public final int height; public Dimension( int width, int height ) { this.width = width; this.height = height; } }