mirror of
https://github.com/TeamMidnightDust/ThisRocks.git
synced 2025-12-15 18:55:08 +01:00
24 lines
454 B
Java
24 lines
454 B
Java
package eu.midnightdust.motschen.rocks.blockstates;
|
|
|
|
import net.minecraft.util.StringIdentifiable;
|
|
|
|
public enum SeashellVariation implements StringIdentifiable {
|
|
YELLOW("yellow"),
|
|
PINK("pink"),
|
|
WHITE("white");
|
|
|
|
private final String name;
|
|
|
|
SeashellVariation(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String toString() {
|
|
return this.name;
|
|
}
|
|
|
|
public String asString() {
|
|
return this.name;
|
|
}
|
|
}
|