mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-02 01:07:58 +01:00
12 lines
351 B
Java
12 lines
351 B
Java
package com.minelittlepony.unicopia.ducks;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IFarmland {
|
|
/**
|
|
* Gets the state used to represent this block as a piece of dirt.
|
|
*/
|
|
BlockState getDirtState(BlockState state, World world, BlockPos pos);
|
|
}
|