package jrummikub.model; /** * Objects that have a size */ public interface Sizeable { public float getWidth(); public float getHeight(); }