mmb.beans.Resizable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world.
THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<
/**
*
*/
package mmb.beans;
/**
* An object which has size.
* Used with item collectors.
* @author oskar
*/
public interface Resizable extends Positioned{
public void setRangeX(int range);
public int getRangeX();
public void setRangeY(int range);
public int getRangeY();
public int maxSize();
}