com.cryptomorin.xseries.abstractions.Material Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of XSeries Show documentation
Show all versions of XSeries Show documentation
A set of utilities for Minecraft plugins
package com.cryptomorin.xseries.abstractions;
/**
* Experimental class for XMaterial Bukkit+Forge abstraction.
*/
interface Material {
String name();
boolean isSupported();
default Material or(Material other) {
return this.isSupported() ? this : other;
}
boolean equals(Object other);
int hashCode();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy