mirror of
https://github.com/TeamMidnightDust/ThisRocks.git
synced 2025-12-17 03:15:09 +01:00
24 lines
450 B
Java
Executable File
24 lines
450 B
Java
Executable File
package eu.midnightdust.motschen.rocks.blockstates;
|
|
|
|
import net.minecraft.util.StringIdentifiable;
|
|
|
|
public enum StarfishVariation implements StringIdentifiable {
|
|
RED("red"),
|
|
PINK("pink"),
|
|
ORANGE("orange");
|
|
|
|
private final String name;
|
|
|
|
StarfishVariation(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String toString() {
|
|
return this.name;
|
|
}
|
|
|
|
public String asString() {
|
|
return this.name;
|
|
}
|
|
}
|