universal-electricity/src/main/java/universalelectricity/api/vector/IVectorWorld.java

12 lines
265 B
Java
Raw Normal View History

2023-07-16 12:31:56 +02:00
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();
}