com.projetloki.genesis.image.HasSize Maven / Gradle / Ivy
The newest version!
package com.projetloki.genesis.image;
/**
* Internal interface implemented by objects with a width and a height.
*
* @author Clément Roux
*/
interface HasSize {
int width();
int height();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy