mirror of
https://github.com/TeamMidnightDust/DeliciousDishes.git
synced 2025-12-15 16:15:09 +01:00
11 lines
250 B
Java
11 lines
250 B
Java
package eu.midnightdust.motschen.dishes.blockstates;
|
|
|
|
import net.minecraft.state.property.IntProperty;
|
|
|
|
public class DishBites {
|
|
public static final IntProperty DISH_BITES;
|
|
static {
|
|
DISH_BITES = IntProperty.of("bites", 0, 4);
|
|
}
|
|
}
|