universal-electricity/src/main/java/universalelectricity/api/vector/IVectorWorld.java
2023-07-16 12:31:56 +02:00

12 lines
265 B
Java

package universalelectricity.api.vector;
import net.minecraft.world.World;
/** Useful interface to define that an object has a 3D location, and a defined world.
*
* @author DarkGuardsman */
public interface IVectorWorld extends IVector3
{
World world();
}