mmb.content.modular.part.PartEntity 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<
The newest version!
/**
*
*/
package mmb.content.modular.part;
import mmb.Nil;
/**
*
* @author oskar
*
*/
public abstract class PartEntity implements PartEntry {
protected abstract int hash0();
protected abstract boolean equal0(PartEntity other);
@Override
public final int hashCode() {
return 31*super.hashCode() + hash0();
}
@Override
public final boolean equals(@Nil Object obj) {
if(this == obj) return true;
if(obj == null) return false;
if(getClass() != obj.getClass()) return false;
PartEntity other = (PartEntity) obj;
return equal0(other);
}
}