mirror of
https://github.com/TeamMidnightDust/ThisRocks.git
synced 2025-12-17 11:25:10 +01:00
This Rocks 1.1.0
Added Starfish Added Underwater Generation Changed Block Sounds Changed SelectionBox sizes New Seashell Loot Table Update MidnightHats
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user