mirror of
https://github.com/TeamMidnightDust/ThisRocks.git
synced 2025-12-18 11:55:09 +01:00
First release
Yay!
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package eu.midnightdust.motschen.rocks.blockstates;
|
||||
|
||||
import net.minecraft.util.StringIdentifiable;
|
||||
|
||||
public enum RockVariation implements StringIdentifiable {
|
||||
TINY("tiny"),
|
||||
SMALL("small"),
|
||||
MEDIUM("medium"),
|
||||
LARGE("large");
|
||||
|
||||
private final String name;
|
||||
|
||||
RockVariation(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public String asString() {
|
||||
return this.name;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package eu.midnightdust.motschen.rocks.blockstates;
|
||||
|
||||
import net.minecraft.util.StringIdentifiable;
|
||||
|
||||
public enum StickVariation implements StringIdentifiable {
|
||||
SMALL("small"),
|
||||
MEDIUM("medium"),
|
||||
LARGE("large");
|
||||
|
||||
private final String name;
|
||||
|
||||
StickVariation(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public String asString() {
|
||||
return this.name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user